-
Notifications
You must be signed in to change notification settings - Fork 0
/
sw.js
64 lines (58 loc) · 1.99 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
const staticCacheName = 'site-static-v4';
const dynamicCacheName = 'site-dynamic-v4';
const assets = [
'./index.html',
'./style.css',
'./assets/fonts/IndianSignLangage.ttf',
'./assets/fonts/Aclonica-Regular.ttf',
'./assets/fonts/Poppins-Regular.ttf',
'./assets/images/contact-us-option-btn-img.png',
'./assets/images/contribute-option-btn-img.png',
'./assets/images/learn-option-btn-img.png',
'./assets/images/translate-option-btn-img.png',
'./assets/images/sanket-logo.png',
'./assets/images/demo-pfp.png',
];
// install event
self.addEventListener('install', evt => {
//console.log('service worker installed');
evt.waitUntil(
caches.open(staticCacheName).then((cache) => {
console.log('caching shell assets');
cache.addAll(assets);
})
);
});
// activate event
self.addEventListener('activate', evt => {
//console.log('service worker activated');
evt.waitUntil(
caches.keys().then(keys => {
//console.log(keys);
return Promise.all(keys
.filter(key => key !== staticCacheName && key !== dynamicCacheName)
.map(key => caches.delete(key))
);
})
);
});
// fetch event
self.addEventListener('fetch', evt => {
//console.log('fetch event', evt);
evt.respondWith(
caches.match(evt.request).then(cacheRes => {
return cacheRes || fetch(evt.request).then(fetchRes => {
return caches.open(dynamicCacheName).then(cache => {
cache.put(evt.request.url, fetchRes.clone());
// check cached items size
// limitCacheSize(dynamicCacheName, 15);
return fetchRes;
})
});
}).catch(() => {
if (evt.request.url.indexOf('.html') > -1) {
return caches.match('index.html');
}
})
);
});