aboutsummaryrefslogblamecommitdiff
path: root/src/background/presenters/Notifier.ts
blob: d828b2ecb50e2288e2268ade2fe7cb9cab622fe0 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                                            
 

                                                                     
                                                                          

                                                   
                                                                            
                                                            
                                                      
 
                                      
                                          
               
                


                                                               
                                                                
                                                                    



              


                              
                                            
                                       
                                                                                                                                                                         
 







                                                               
                                                                          
                                                                    



              
const NOTIFICATION_ID_UPDATE = "vimvixen-update";
const NOTIFICATION_ID_INVALID_SETTINGS = "vimvixen-update-invalid-settings";

export default interface Notifier {
  notifyUpdated(version: string, onclick: () => void): Promise<void>;

  notifyInvalidSettings(error: Error, 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";

    const listener = (id: string) => {
      if (id !== NOTIFICATION_ID_UPDATE) {
        return;
      }
      onclick();
      browser.notifications.onClicked.removeListener(listener);
    };
    browser.notifications.onClicked.addListener(listener);

    await browser.notifications.create(NOTIFICATION_ID_UPDATE, {
      type: "basic",
      iconUrl: browser.extension.getURL("resources/icon_48x48.png"),
      title,
      message,
    });
  }

  async notifyInvalidSettings(
    error: Error,
    onclick: () => void
  ): Promise<void> {
    const title = `Loading settings failed`;
    // eslint-disable-next-line max-len
    const message = `The default settings are used due to the last saved settings is invalid.  Check your current settings from the add-on preference: ${error.message}`;

    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"),
      title,
      message,
    });
  }
}