summaryrefslogtreecommitdiff
path: root/web/sw.js
blob: a32b8cca7cedd77d0c066d77217741585411b87e (plain)
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
const CACHE = 'kiss-v6';
const ASSETS = [
  '/',
  '/index.html',
  '/login.html',
  '/bootstrap.html',
  '/css/theme.css',
  '/css/layout.css',
  '/css/components.css',
  '/css/player.css',
  '/css/lightbox.css',
  '/css/login.css',
  '/js/app.js',
  '/js/state.js',
  '/js/api.js',
  '/js/keyboard.js',
  '/js/selection.js',
  '/js/player.js',
  '/js/search.js',
  '/js/shuffle.js',
  '/js/themes.js',
  '/js/notes.js',
  '/js/admin.js',
  '/js/pwa.js',
  '/js/lightbox.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))
  );
});