14 lines
1.2 KiB
JavaScript
14 lines
1.2 KiB
JavaScript
const CACHE = 'gree-controller-v080-control-ownership';
|
|
const SCOPE = new URL(self.registration.scope).pathname.replace(/\/$/, '');
|
|
const path = value => `${SCOPE}${value.startsWith('/') ? value : `/${value}`}` || '/';
|
|
const ASSETS = [path('/'), path('/styles.css'), path('/app.js'), path('/theme-init.js'), path('/favicon.svg'), path('/manifest.webmanifest'), path('/lang/index.json'), path('/lang/en.json')];
|
|
self.addEventListener('install', event => event.waitUntil(caches.open(CACHE).then(cache => cache.addAll(ASSETS)).then(() => self.skipWaiting())));
|
|
self.addEventListener('activate', event => event.waitUntil(caches.keys().then(keys => Promise.all(keys.filter(key => key !== CACHE).map(key => caches.delete(key)))).then(() => self.clients.claim())));
|
|
self.addEventListener('fetch', event => {
|
|
const url = new URL(event.request.url);
|
|
if (event.request.method !== 'GET' || url.pathname.startsWith(path('/api/'))) return;
|
|
event.respondWith(fetch(event.request).then(response => {
|
|
const copy = response.clone(); caches.open(CACHE).then(cache => cache.put(event.request, copy)); return response;
|
|
}).catch(() => caches.match(event.request).then(response => response || caches.match(path('/')))));
|
|
});
|