Version as Clean Architecture
This commit is contained in:
parent
a1e5e97200
commit
87ed1f43a9
11 changed files with 104 additions and 114 deletions
src/background/infrastructures
23
src/background/infrastructures/notifier.js
Normal file
23
src/background/infrastructures/notifier.js
Normal file
|
@ -0,0 +1,23 @@
|
|||
const NOTIFICATION_ID = 'vimvixen-update';
|
||||
|
||||
export default class Notifier {
|
||||
notify(title, message, onclick) {
|
||||
const listener = (id) => {
|
||||
if (id !== NOTIFICATION_ID) {
|
||||
return;
|
||||
}
|
||||
|
||||
onclick();
|
||||
|
||||
browser.notifications.onClicked.removeListener(listener);
|
||||
};
|
||||
browser.notifications.onClicked.addListener(listener);
|
||||
|
||||
return browser.notifications.create(NOTIFICATION_ID, {
|
||||
'type': 'basic',
|
||||
'iconUrl': browser.extension.getURL('resources/icon_48x48.png'),
|
||||
title,
|
||||
message,
|
||||
});
|
||||
}
|
||||
}
|
Reference in a new issue