diff options
Diffstat (limited to 'src/background/presenters')
-rw-r--r-- | src/background/presenters/Notifier.ts (renamed from src/background/presenters/NotifyPresenter.ts) | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/background/presenters/NotifyPresenter.ts b/src/background/presenters/Notifier.ts index b7f4f99..57d58cb 100644 --- a/src/background/presenters/NotifyPresenter.ts +++ b/src/background/presenters/Notifier.ts @@ -1,10 +1,13 @@ -import { injectable } from 'tsyringe'; - const NOTIFICATION_ID_UPDATE = 'vimvixen-update'; const NOTIFICATION_ID_INVALID_SETTINGS = 'vimvixen-update-invalid-settings'; -@injectable() -export default class NotifyPresenter { +export default interface Notifier { + notifyUpdated(version: string, onclick: () => void): Promise<void>; + + notifyInvalidSettings(onclick: () => void): Promise<void>; +} + +export class NotifierImpl implements NotifierImpl { async notifyUpdated(version: string, onclick: () => void): Promise<void> { const title = `Vim Vixen ${version} has been installed`; const message = 'Click here to see release notes'; |