-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsw.js
More file actions
63 lines (57 loc) · 1.85 KB
/
Copy pathsw.js
File metadata and controls
63 lines (57 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/* RiffDeck service worker
* Strategy:
* - App shell (HTML/CSS/JS in this single index.html): network-first, fallback to cache
* - Static assets (manifest, icons): cache-first
* - Firebase / YouTube / fonts: passthrough (network-only)
*/
const CACHE = 'riffdeck-v1.7';
const APP_SHELL = [
'./',
'./index.html',
'./manifest.webmanifest',
'./icons/icon.svg',
'./icons/favicon.svg'
];
self.addEventListener('install', (event) => {
event.waitUntil(
caches.open(CACHE).then((c) => c.addAll(APP_SHELL).catch(() => {}))
.then(() => self.skipWaiting())
);
});
self.addEventListener('activate', (event) => {
event.waitUntil(
caches.keys().then((keys) =>
Promise.all(keys.filter((k) => k !== CACHE).map((k) => caches.delete(k)))
).then(() => self.clients.claim())
);
});
self.addEventListener('fetch', (event) => {
const req = event.request;
if (req.method !== 'GET') return;
const url = new URL(req.url);
// Skip cross-origin — Firebase, YouTube, Google Fonts go straight to network
if (url.origin !== self.location.origin) return;
// Network-first for HTML / JS / CSS
if (req.destination === 'document' || req.destination === 'script' || req.destination === 'style' || url.pathname.endsWith('/') || url.pathname.endsWith('.html')) {
event.respondWith(
fetch(req)
.then((res) => {
const copy = res.clone();
caches.open(CACHE).then((c) => c.put(req, copy));
return res;
})
.catch(() => caches.match(req).then((m) => m || caches.match('./index.html')))
);
return;
}
// Cache-first for everything else (icons, manifest)
event.respondWith(
caches.match(req).then((cached) =>
cached || fetch(req).then((res) => {
const copy = res.clone();
caches.open(CACHE).then((c) => c.put(req, copy));
return res;
})
)
);
});