aboutsummaryrefslogtreecommitdiff
path: root/src/background/presenters
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2019-08-05 21:48:46 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2019-08-20 21:48:05 +0900
commit34bd084a4d0d3823764e3fb78378795aba9534d3 (patch)
tree3b3914d4d493cbe4c32348e3f5beaedf86ef7f6e /src/background/presenters
parent07bcc15e7b487fb5815b151e8c7e84a31f875dce (diff)
Open options page on banner click
Diffstat (limited to 'src/background/presenters')
-rw-r--r--src/background/presenters/NotifyPresenter.ts11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/background/presenters/NotifyPresenter.ts b/src/background/presenters/NotifyPresenter.ts
index 9785278..defb601 100644
--- a/src/background/presenters/NotifyPresenter.ts
+++ b/src/background/presenters/NotifyPresenter.ts
@@ -26,11 +26,20 @@ export default class NotifyPresenter {
});
}
- async notifyInvalidSettings(): Promise<void> {
+ 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';
+ const listener = (id: string) => {
+ if (id !== NOTIFICATION_ID_INVALID_SETTINGS) {
+ return;
+ }
+ onclick();
+ browser.notifications.onClicked.removeListener(listener);
+ };
+ browser.notifications.onClicked.addListener(listener);
+
await browser.notifications.create(NOTIFICATION_ID_INVALID_SETTINGS, {
'type': 'basic',
'iconUrl': browser.extension.getURL('resources/icon_48x48.png'),