-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsw.js
48 lines (41 loc) · 1.05 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
const cacheName = 'vocalico'
const staticAssets = [
'./',
'./index.html',
'./app.js',
'./manifest.json',
'./style.css',
]
self.addEventListener('install', async e => {
const cache = await caches.open(cacheName)
await cache.addAll(staticAssets)
return self.skipWaiting()
})
self.addEventListener('activate', e =>{
self.clients.claim()
})
self.addEventListener('fetch', async e => {
const req = e.request
const url = new URL(req.url)
if(url.origin === location.origin){
e.respondWith(cacheFirst(req))
}else {
e.respondWith(networkAndCache(req))
}
})
async function cacheFirst(req){
const cache = await caches.open(cacheName)
const cached = await cache.match(req)
return cached || fetch(req)
}
async function networkAndCache(req){
const cache = await caches.open(cacheName)
try {
const fresh = await fetch(req)
await cache.put(req, fresh.clone())
return fresh
} catch (e){
const cache = await cache.match(req)
return cached
}
}