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

36 lines
870 B
TypeScript
Raw Normal View History

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