-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice-worker.js
47 lines (44 loc) · 1.09 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
var doCache = true;
alert("LEaf ===> "+doCache);
var CACHE_NAME = "my-pwa-cache-v1";
self.addEventListener("activate", event => {
const cacheWhitelist = [CACHE_NAME];
event.waitUntil(
caches.keys().then(keyList =>
Promise.all(
keyList.map(key => {
if (!cacheWhitelist.includes(key)) {
console.log("Deleting cache: " + key);
return caches.delete(key);
}
})
)
)
);
});
self.addEventListener("install", function(event) {
if (doCache) {
event.waitUntil(
caches.open(CACHE_NAME).then(function(cache) {
fetch("manifest.json")
.then(response => {
response.json();
})
.then(assets => {
const urlsToCache = ["/", assets["main.js"]];
cache.addAll(urlsToCache);
console.log("cached");
});
})
);
}
});
self.addEventListener("fetch", function(event) {
if (doCache) {
event.respondWith(
caches.match(event.request).then(function(response) {
return response || fetch(event.request);
})
);
}
});