Version as Clean Architecture

This commit is contained in:
Shin'ya Ueoka 2018-07-22 09:30:01 +09:00
parent a1e5e97200
commit 87ed1f43a9
11 changed files with 104 additions and 114 deletions

View file

@ -0,0 +1,41 @@
import manifest from '../../../manifest.json';
import VersionRepository from '../repositories/version';
import TabRepository from '../repositories/tab';
import Notifier from '../infrastructures/notifier';
export default class VersionInteractor {
constructor() {
this.versionRepository = new VersionRepository();
this.tabRepository = new TabRepository();
this.notifier = new Notifier();
}
async notifyIfUpdated() {
if (!await this.checkUpdated()) {
return;
}
let title = 'Vim Vixen ' + manifest.version + ' has been installed';
let message = 'Click here to see release notes';
this.notifier.notify(title, message, () => {
let url = this.releaseNoteUrl(manifest.version);
this.tabRepository.create(url);
});
this.versionRepository.update(manifest.version);
}
async checkUpdated() {
let prev = await this.versionRepository.get();
if (!prev) {
return true;
}
return manifest.version !== prev;
}
releaseNoteUrl(version) {
if (version) {
return 'https://github.com/ueokande/vim-vixen/releases/tag/' + version;
}
return 'https://github.com/ueokande/vim-vixen/releases/';
}
}