-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserviceworker.js
57 lines (51 loc) · 1.33 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
const cacheName = "v-1";
const staticAssets = [
'./index.html',
'./analytics.html',
'./about.html',
'./team.html',
'./css/materialize-min.css',
'./js/materialize-min.js',
'./main.js',
'./logo_1.png',
'./team/aayush.jpeg',
'./team/sanat.jpeg',
'./team/rohan.jpeg',
'./team/aman.jpeg',
'./team/ansh.jpeg',
'./team/prashant.jpeg',
'./team/vaibhav.jpeg'
];
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 cached = await cache.match(req);
return cached;
}
}