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
64
65
66
67
68
69
70
71
72
|
const CACHE = 'kiss-v18';
const ASSETS = [
'/',
'/index.html',
'/detach.html',
'/login.html',
'/bootstrap.html',
'/css/theme.css',
'/css/layout.css',
'/css/components.css',
'/css/player.css',
'/css/login.css',
'/js/app.js',
'/js/state.js',
'/js/api.js',
'/js/keyboard.js',
'/js/selection.js',
'/js/player.js',
'/js/playback.js',
'/js/imageViewer.js',
'/js/detach.js',
'/js/detachPopup.js',
'/js/search.js',
'/js/shuffle.js',
'/js/themes.js',
'/js/notes.js',
'/js/admin.js',
'/js/dom.js',
'/js/utils.js',
'/js/podcasts.js',
'/js/pwa.js',
'/js/views/admin-status.js',
'/js/views/help.js',
'/js/views/media-actions.js',
'/js/views/media-grid.js',
'/js/views/media-info.js',
'/js/views/playback-nav.js',
'/js/views/sets.js',
'/js/views/shares.js',
'/js/views/tags.js',
'/js/views/upload.js',
'/manifest.json',
];
self.addEventListener('install', (e) => {
e.waitUntil(caches.open(CACHE).then((c) => c.addAll(ASSETS)).then(() => self.skipWaiting()));
});
self.addEventListener('activate', (e) => {
e.waitUntil(
caches.keys().then((keys) =>
Promise.all(keys.filter((k) => k !== CACHE).map((k) => caches.delete(k)))
).then(() => self.clients.claim())
);
});
self.addEventListener('fetch', (e) => {
if (e.request.method !== 'GET') return;
const url = new URL(e.request.url);
if (url.origin !== self.location.origin || url.pathname.startsWith('/api/')) return;
e.respondWith(
fetch(e.request)
.then((res) => {
const copy = res.clone();
if (ASSETS.includes(url.pathname)) {
caches.open(CACHE).then((c) => c.put(e.request, copy));
}
return res;
})
.catch(() => caches.match(e.request))
);
});
|