aboutsummaryrefslogtreecommitdiff
path: root/src/background/presenters
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2019-07-30 21:52:22 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2019-07-30 21:52:22 +0900
commit33a16b85e412abbf54f22d21feb97e876e5dd784 (patch)
tree2abc4e5d011f2bb155ad8a5ae220508efce4a402 /src/background/presenters
parent3db11041c5b75c30b584893937876b6471e67cf2 (diff)
Handle errors on loading settings
The error on loading settings can occurs when the settings lose backward compatibility on version up, or the saved date is broken. The error is caught, then the script done fallback to default settings and notify it to user.
Diffstat (limited to 'src/background/presenters')
-rw-r--r--src/background/presenters/NotifyPresenter.ts15
1 files changed, 14 insertions, 1 deletions
diff --git a/src/background/presenters/NotifyPresenter.ts b/src/background/presenters/NotifyPresenter.ts
index 8fa4acb..6498fbf 100644
--- a/src/background/presenters/NotifyPresenter.ts
+++ b/src/background/presenters/NotifyPresenter.ts
@@ -4,7 +4,20 @@ const NOTIFICATION_ID = 'vimvixen-update';
@injectable()
export default class NotifyPresenter {
- async notify(
+ async notifyUpdated(version: string, onclick: () => void): Promise<void> {
+ let title = `Vim Vixen ${version} has been installed`;
+ let message = 'Click here to see release notes';
+ await this.notify(title, message, onclick);
+ }
+
+ async notifyInvalidSettings(onclick: () => void): Promise<void> {
+ let title = `Loaded settings is invalid`;
+ // eslint-disable-next-line max-len
+ let message = 'The default settings is used due to the last saved settings is invalid. Check your current settings from the add-on preference';
+ await this.notify(title, message, onclick);
+ }
+
+ private async notify(
title: string,
message: string,
onclick: () => void,