-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsw.js
70 lines (60 loc) · 1.58 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
const {log} = console
const cacheName = 'cacheNameTest-v0.2.9.9.0'
const staticAssets = [
'./',
'./index.html',
// './index.js',
// './main.js',
// './dist/main.js'
]
self.addEventListener('install', async e => {
console.log('sw.install')
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)
// console.log(url.origin, '------', location.origin)
// if (url.origin == location.origin) {
// e.respondWith(cacheFirst(req))
// } else {
// e.respondWith()
// e.respondWith(networkAndCache(req))
// }
// })
self.addEventListener('fetch', async e => {
const req = e.request
const url = new URL(req.url)
const cache = await caches.open(cacheName)
if (url.origin == location.origin) {
const cached = await cache.match(req)
const cacheOrFresh = cached ?? fetch(req)
e.respondWith(cacheOrFresh)
} else {
const fresh = await fetch(req)
e.respondWith(fresh)
}
})
// async function cacheFirst(req) {
// log('cacheFirst')
// const cache = await caches.open(cacheName)
// const cached = await cache.match(req)
// return cached || fetch(req)
// }
// async function networkAndCache(req) {
// log('networkAndCache')
// const cache = await caches.open(cacheName)
// try {
// const fresh = await fetch(req)
// await cache.put(req, fresh.clone())
// return fresh
// } catch (e) {
// const cached = await cache.match(req)
// return cached
// }
// }