-
Notifications
You must be signed in to change notification settings - Fork 0
/
serviceWorker.js
44 lines (38 loc) · 1011 Bytes
/
serviceWorker.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
const staticAssets=[
'./',
'./style.css',
'./index.js',
'./sounds/bubbles.mp3',
'./sounds/clay.mp3',
'./sounds/confetti.mp3',
'./sounds/glimmer.mp3',
'./sounds/moon.mp3',
'./sounds/ufo.mp3'
];
self.addEventListener('install', async event=>{
const cache = await caches.open('static-cache');
cache.addAll(staticAssets);
});
self.addEventListener('fetch', event => {
const req = event.request;
const url = new URL(req.url);
if(url.origin === location.url){
event.respondWith(cacheFirst(req));
} else {
event.respondWith(newtorkFirst(req));
}
});
async function cacheFirst(req){
const cachedResponse = caches.match(req);
return cachedResponse || fetch(req);
}
async function newtorkFirst(req){
const cache = await caches.open('dynamic-cache');
try {
const res = await fetch(req);
cache.put(req, res.clone());
return res;
} catch (error) {
return await cache.match(req);
}
}