Skip to content

Commit

Permalink
feat: エラーハンドリング改善
Browse files Browse the repository at this point in the history
  • Loading branch information
chika3742 committed Dec 10, 2024
1 parent 36f88f7 commit 57311eb
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 12 deletions.
25 changes: 14 additions & 11 deletions lib/pages/home.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import 'dart:async';
import 'dart:developer';
import 'dart:io';

import 'package:dqm_installer_flt/libs/compatibility_checker.dart';
Expand Down Expand Up @@ -383,18 +384,20 @@ class _HomePageState extends State<HomePage> {
),
);
}
} on DqmInstallationException catch (e) {
if (e.code == DqmInstallationError.failedToParseDqmType) {
if (mounted) {
showAlertDialog(
context: context,
title: "DQMの種類の判別に失敗しました。",
message: "ファイル名が正しくない可能性があります。ダウンロードしたファイルのファイル名は絶対に変更しないでください。",
);
}
return;
} on DqmInstallationException {
if (mounted) {
showAlertDialog(
context: context,
title: "DQMの種類の判別に失敗しました。",
message: "ファイル名が正しくない可能性があります。ダウンロードしたファイルのファイル名は変更しないでください。",
);
}
rethrow;
} catch (e, st) {
log("Failed to start installation", error: e, stackTrace: st);
saveErrorToFile(e, st);
showErrorSnackBar(context, "インストールを開始できませんでした。"
"本インストーラーの実行ファイルと同じフォルダーにエラーの詳細データが生成されているため、"
"その中身を添付の上開発者(X: @chikavoid)にご連絡ください。");
}
}

Expand Down
2 changes: 1 addition & 1 deletion lib/utils/utils.dart
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ void showSnackBar(BuildContext context, String message,

void showErrorSnackBar(BuildContext context, String message) {
showSnackBar(context, message,
color: Colors.red, duration: const Duration(seconds: 8));
color: Theme.of(context).colorScheme.error, duration: const Duration(seconds: 8));
}

void saveErrorToFile(Object e, StackTrace? st) {
Expand Down

0 comments on commit 57311eb

Please sign in to comment.