26 lines
778 B
JavaScript
26 lines
778 B
JavaScript
|
|
const CACHE = 'posimai-brief-v1';
|
|||
|
|
const ASSETS = ['/', '/index.html', '/manifest.json'];
|
|||
|
|
const ORIGIN = self.location.origin;
|
|||
|
|
|
|||
|
|
self.addEventListener('install', e => {
|
|||
|
|
e.waitUntil(caches.open(CACHE).then(c => c.addAll(ASSETS)));
|
|||
|
|
self.skipWaiting();
|
|||
|
|
});
|
|||
|
|
|
|||
|
|
self.addEventListener('activate', e => {
|
|||
|
|
e.waitUntil(
|
|||
|
|
caches.keys().then(keys =>
|
|||
|
|
Promise.all(keys.filter(k => k !== CACHE).map(k => caches.delete(k)))
|
|||
|
|
)
|
|||
|
|
);
|
|||
|
|
self.clients.claim();
|
|||
|
|
});
|
|||
|
|
|
|||
|
|
self.addEventListener('fetch', e => {
|
|||
|
|
// クロスオリジン(Feed API・server.js・open-meteo 等)はキャッシュしない
|
|||
|
|
if (!e.request.url.startsWith(ORIGIN)) return;
|
|||
|
|
e.respondWith(
|
|||
|
|
caches.match(e.request).then(cached => cached || fetch(e.request))
|
|||
|
|
);
|
|||
|
|
});
|