forked from inexorabletash/travellermap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsw.js
55 lines (49 loc) · 1.41 KB
/
sw.js
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
// version 3
const CACHE_NAME = 'offline-resources';
const urlsToCache = [
'/', // start_url in manifest, even though this isn't served; see:
// https://developers.google.com/web/tools/lighthouse/audits/cache-contains-start_url
'offline.html',
'favicon.svg',
'https://fonts.googleapis.com/css?family=Marcellus',
];
self.addEventListener('install', event => {
event.waitUntil(
(async () => {
const cache = await self.caches.open(CACHE_NAME);
await cache.addAll(
urlsToCache.map(url => new Request(url, {cache:'reload'}))
);
})()
);
self.skipWaiting();
});
self.addEventListener('activate', event => {
event.waitUntil(
(async () => {
if ("navigationPreload" in self.registration) {
await self.registration.navigationPreload.enable();
}
})()
);
self.clients.claim();
});
self.addEventListener('fetch', event => {
if (event.request.mode !== 'navigate')
return;
event.respondWith(
(async () => {
try {
const preloadResponse = await event.preloadResponse;
if (preloadResponse)
return preloadResponse;
const networkResponse = await fetch(event.request);
return networkResponse;
} catch (error) {
const cache = await self.caches.open(CACHE_NAME);
const cachedResponse = await cache.match('offline.html');
return cachedResponse;
}
})()
);
});