yumechi-no-kuni/src/client/app/common/scripts/check-for-update.ts

37 lines
872 B
TypeScript
Raw Normal View History

2019-02-17 13:52:40 -06:00
import { version as current } from '../../config';
2017-11-13 03:05:35 -06:00
export default async function($root: any, force = false, silent = false) {
const meta = await $root.getMeta(force);
2019-02-17 13:52:40 -06:00
const newer = meta.version;
2017-11-15 12:06:52 -06:00
2018-03-02 16:32:18 -06:00
if (newer != current) {
2017-11-15 12:06:52 -06:00
localStorage.setItem('should-refresh', 'true');
2018-03-02 16:32:18 -06:00
localStorage.setItem('v', newer);
2017-11-28 00:43:17 -06:00
2018-09-06 10:44:57 -05:00
// Clear cache (service worker)
2017-11-28 00:43:17 -06:00
try {
2018-02-23 11:46:09 -06:00
if (navigator.serviceWorker.controller) {
navigator.serviceWorker.controller.postMessage('clear');
}
2017-12-07 23:59:43 -06:00
const registrations = await navigator.serviceWorker.getRegistrations();
for (const registration of registrations) {
registration.unregister();
}
2017-11-28 00:43:17 -06:00
} catch (e) {
console.error(e);
}
2018-11-30 16:59:15 -06:00
/*if (!silent) {
2018-12-02 00:28:52 -06:00
$root.dialog({
2018-11-11 04:13:10 -06:00
title: $root.$t('@.update-available-title'),
text: $root.$t('@.update-available', { newer, current })
2018-06-20 11:58:47 -05:00
});
2018-11-30 16:59:15 -06:00
}*/
2018-03-02 03:46:08 -06:00
2018-03-02 16:32:18 -06:00
return newer;
2018-03-02 03:46:08 -06:00
} else {
return null;
2017-11-15 12:06:52 -06:00
}
2017-11-13 03:05:35 -06:00
}