-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathservice-worker.js
executable file
·58 lines (46 loc) · 1.13 KB
/
service-worker.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
var CACHE_NAME='toolbox-v1';
var urlsToCache = [
'./',
'./index.html',
'./css/normalize.css',
'./css/style.css',
'./css/switch.css',
'./img/logo.png',
'./js/app.js',
'./js/clipboard.min.js',
];
//To clear the cache on load
// caches.delete(CACHE_NAME).then(function() {
// console.log('Cache successfully deleted!');
// });
//
self.addEventListener('install', e => {
e.waitUntil(
caches.open(CACHE_NAME).then(cache => {
return cache.addAll(urlsToCache)
.then(() => self.skipWaiting());
})
)
});
self.addEventListener('activate', event => {
var cacheWhitelist = [CACHE_NAME];
event.waitUntil(
caches.keys().then(function(cacheNames) {
return Promise.all(
cacheNames.map(function(cacheName) {
if (cacheWhitelist.indexOf(cacheName) === -1) {
return caches.delete(cacheName);
}
})
);
})
);
event.waitUntil(self.clients.claim());
});
self.addEventListener('fetch', event => {
event.respondWith(
caches.match(event.request).then(response => {
return response || fetch(event.request);
})
);
});