-
Notifications
You must be signed in to change notification settings - Fork 2
/
sw.js
38 lines (32 loc) · 935 Bytes
/
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
const staticAssets = [
'./',
'./assets/css/styles.css',
'./assets/js/scripts.js'
];
self.addEventListener('install', async event => {
const cache = await caches.open('currencies-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 {
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('currencies-dynamic');
try {
const res = await fetch(req);
cache.put(req, res.clone());
return res;
} catch (e) {
return await cache.match(req);
}
}