You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

28 lines
625 B

const NOTIFICATION_ID = 'vimvixen-update';
export default class NotifyPresenter {
notify(
title: string,
message: string,
onclick: () => void,
): Promise<string> {
const listener = (id: string) => {
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,
});
}
}