-
Notifications
You must be signed in to change notification settings - Fork 0
/
fallback.json
56 lines (49 loc) · 1.58 KB
/
fallback.json
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
// importScripts("./node_modules/workbox-sw/build/workbox-sw.js");
// workbox.routing.registerRoute(
// /\.(?:js|css)$/,
// workbox.strategies.staleWhileRevalidate(),
// );
// workbox.routing.registerRoute(
// new RegExp('https://maps.(?:googleapis|gstatic).com/(.*)'),
// workbox.strategies.staleWhileRevalidate({
// cacheName: 'googleapis'
// }),
// );
const filesToCache = [
'./',
'./index.html',
'./public/style.css'
];
self.addEventListener('install', async event => {
console.log('[ServiceWorker] Install');
const cacheName = 'map-static';
const cache = await caches.open(cacheName);
cache.addAll(filesToCache);
});
self.addEventListener('activate', event => {
event.waitUntil(self.clients.claim());
});
self.addEventListener('fetch', event => {
const request = event.request;
const url = new URL(request.url);
if (url.origin === location.origin) {
event.respondWith(cacheFirst(request));
} else {
event.respondWith(networkFirst(request));
}
});
async function cacheFirst(request) {
const cachedResponse = await caches.match(request);
return cachedResponse || fetch(request);
}
async function networkFirst(request) {
const dynamicCache = await caches.open('map-dynamic');
try {
const networkResponse = await fetch(request);
dynamicCache.put(request, networkResponse.clone());
return networkResponse;
} catch (err) {
const cachedResponse = await dynamicCache.match(request);
return cachedResponse || await caches.match('./fallback.json');
}
}