aboutsummaryrefslogtreecommitdiff
path: root/src/background/presenters
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2019-08-05 21:21:39 +0900
committerGitHub <noreply@github.com>2019-08-05 21:21:39 +0900
commite7ed84f7576eafadfcd0f7b9737586d048477454 (patch)
treec8f7d1b783aad596f57fbffd873f8b07f5b0dba1 /src/background/presenters
parent7104f122f94e17ece56d2bd832d007c716e5631e (diff)
parent9b2b8f0608df9e4c7a251f49d8ed818b8966786e (diff)
Merge pull request #622 from ueokande/fallback-default-settings
Handle errors on loading settings
Diffstat (limited to 'src/background/presenters')
-rw-r--r--src/background/presenters/NotifyPresenter.ts31
1 files changed, 21 insertions, 10 deletions
diff --git a/src/background/presenters/NotifyPresenter.ts b/src/background/presenters/NotifyPresenter.ts
index 8fa4acb..9785278 100644
--- a/src/background/presenters/NotifyPresenter.ts
+++ b/src/background/presenters/NotifyPresenter.ts
@@ -1,26 +1,37 @@
import { injectable } from 'tsyringe';
-const NOTIFICATION_ID = 'vimvixen-update';
+const NOTIFICATION_ID_UPDATE = 'vimvixen-update';
+const NOTIFICATION_ID_INVALID_SETTINGS = 'vimvixen-update-invalid-settings';
@injectable()
export default class NotifyPresenter {
- async notify(
- title: string,
- message: string,
- onclick: () => void,
- ): Promise<void> {
+ async notifyUpdated(version: string, onclick: () => void): Promise<void> {
+ let title = `Vim Vixen ${version} has been installed`;
+ let message = 'Click here to see release notes';
+
const listener = (id: string) => {
- if (id !== NOTIFICATION_ID) {
+ if (id !== NOTIFICATION_ID_UPDATE) {
return;
}
-
onclick();
-
browser.notifications.onClicked.removeListener(listener);
};
browser.notifications.onClicked.addListener(listener);
- await browser.notifications.create(NOTIFICATION_ID, {
+ await browser.notifications.create(NOTIFICATION_ID_UPDATE, {
+ 'type': 'basic',
+ 'iconUrl': browser.extension.getURL('resources/icon_48x48.png'),
+ title,
+ message,
+ });
+ }
+
+ async notifyInvalidSettings(): 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 browser.notifications.create(NOTIFICATION_ID_INVALID_SETTINGS, {
'type': 'basic',
'iconUrl': browser.extension.getURL('resources/icon_48x48.png'),
title,