rudeshark.net/src/client/app/common/scripts/check-for-update.ts

37 lines
937 B
TypeScript
Raw Normal View History

2018-04-29 14:37:51 +02:00
import MiOS from '../../mios';
2018-03-02 23:32:18 +01:00
import { version as current } from '../../config';
2017-11-13 10:05:35 +01:00
2018-03-02 10:46:08 +01:00
export default async function(mios: MiOS, force = false, silent = false) {
const meta = await mios.getMeta(force);
const newer = meta.clientVersion;
2017-11-15 19:06:52 +01:00
2018-03-02 23:32:18 +01:00
if (newer != current) {
2017-11-15 19:06:52 +01:00
localStorage.setItem('should-refresh', 'true');
2018-03-02 23:32:18 +01:00
localStorage.setItem('v', newer);
2017-11-28 07:43:17 +01:00
2018-09-06 17:44:57 +02:00
// Clear cache (service worker)
2017-11-28 07:43:17 +01:00
try {
2018-02-23 18:46:09 +01:00
if (navigator.serviceWorker.controller) {
navigator.serviceWorker.controller.postMessage('clear');
}
2017-12-08 06:59:43 +01:00
navigator.serviceWorker.getRegistrations().then(registrations => {
registrations.forEach(registration => registration.unregister());
});
2017-11-28 07:43:17 +01:00
} catch (e) {
console.error(e);
}
2018-03-02 10:46:08 +01:00
if (!silent) {
2018-06-20 18:58:47 +02:00
mios.apis.dialog({
title: '%i18n:common.update-available-title%',
text: '%i18n:common.update-available%'.replace('{newer}', newer).replace('{current}', current)
});
2018-03-02 10:46:08 +01:00
}
2018-03-02 23:32:18 +01:00
return newer;
2018-03-02 10:46:08 +01:00
} else {
return null;
2017-11-15 19:06:52 +01:00
}
2017-11-13 10:05:35 +01:00
}