2026-03-21 04:29:12 +00:00
|
|
|
|
const CACHE = 'posimai-veil-v3';
|
2026-03-21 01:57:57 +00:00
|
|
|
|
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)))
|
2026-03-27 03:26:45 +00:00
|
|
|
|
).catch(err => console.warn('[SW] activate error', err))
|
2026-03-21 01:57:57 +00:00
|
|
|
|
);
|
|
|
|
|
|
self.clients.claim();
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
self.addEventListener('fetch', e => {
|
|
|
|
|
|
// クロスオリジンリクエストはキャッシュしない(API等が古いデータを返すのを防ぐ)
|
|
|
|
|
|
if (!e.request.url.startsWith(ORIGIN)) return;
|
|
|
|
|
|
|
|
|
|
|
|
e.respondWith(
|
|
|
|
|
|
caches.match(e.request).then(cached => cached || fetch(e.request))
|
|
|
|
|
|
);
|
|
|
|
|
|
});
|