diff options
| author | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-02-25 22:01:37 +0900 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-25 22:01:37 +0900 | 
| commit | cebd64a69f705482957a5e6a3f23054ca7985aa4 (patch) | |
| tree | 9e8ffd8209972f839367302d3a4b68051f5c2823 /src/background/controllers | |
| parent | dfeb7e75498384af5e24255ee0fe7f8af37ac489 (diff) | |
| parent | 8614c7a516b475803b0ad30a0fe8e6d0c98e7b48 (diff) | |
Merge pull request #539 from ueokande/webext-on-install-event
Use browser.runtime.onInstalled event
Diffstat (limited to 'src/background/controllers')
| -rw-r--r-- | src/background/controllers/VersionController.js | 4 | ||||
| -rw-r--r-- | src/background/controllers/version.js | 13 | 
2 files changed, 15 insertions, 2 deletions
| diff --git a/src/background/controllers/VersionController.js b/src/background/controllers/VersionController.js index 1bcac4c..c596f9b 100644 --- a/src/background/controllers/VersionController.js +++ b/src/background/controllers/VersionController.js @@ -5,7 +5,7 @@ export default class VersionController {      this.versionUseCase = new VersionUseCase();    } -  notifyIfUpdated() { -    this.versionUseCase.notifyIfUpdated(); +  notify() { +    this.versionUseCase.notify();    }  } diff --git a/src/background/controllers/version.js b/src/background/controllers/version.js new file mode 100644 index 0000000..ec0f634 --- /dev/null +++ b/src/background/controllers/version.js @@ -0,0 +1,13 @@ +import VersionInteractor from '../usecases/version'; + +export default class VersionController { +  constructor() { +    this.versionInteractor = new VersionInteractor(); +  } + +  notifyIfUpdated() { +    browser.runtime.onInstalled.addListener(() => { +      return this.versionInteractor.notify(); +    }); +  } +} | 
