-
Notifications
You must be signed in to change notification settings - Fork 4
/
sw.js
41 lines (35 loc) · 1.02 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
const staticAssets = [
'./',
'./style.css',
'./app.js',
'./fallback.json',
'./images/fetch-dog.jpg'
];
self.addEventListener('install', async event => {
const cache = await caches.open('news-static');
cache.addAll(staticAssets);
})
self.addEventListener('fetch', event => {
const req = event.request;
const url = new URL(req.url);
if (url.origin === location.origin) {
event.respondWith(cacheFirst(req));
} else if ((req.url.indexOf('http') !== -1)) {
event.respondWith(networkFirst(req));
}
});
async function cacheFirst(req) {
const cachedResponse = await caches.match(req);
return cachedResponse || fetch(req);
}
async function networkFirst(req) {
const cache = await caches.open('news-dynamic');
try {
const res = await fetch(req);
cache.put(req, res.clone());
return res;
} catch (error) {
const cachedResponse = await cache.match(req);
return cachedResponse || await caches.match('./fallback.json');
}
}