-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathservice-worker.js
44 lines (41 loc) · 1013 Bytes
/
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
const $CACHE_STORE = "nicolasbrugneaux.me/cache";
const $FILES = [
"/assets/js/main.min.js",
"/assets/css/main.css",
"/assets/css/fonts/data-woff.css",
"/assets/css/fonts/data-woff2.css",
"/assets/css/fonts/data-ttf.css",
"/projects/",
"/projects/index.html",
"/about/",
"/about/index.html",
"/",
"/index.html"
];
self.addEventListener("fetch", function(event) {
event.respondWith(
caches.match(event.request).then(function(request) {
return request || fetch(event.request);
})
);
});
self.addEventListener("install", function(event) {
event.waitUntil(
caches.open($CACHE_STORE).then(function(cache) {
return cache.addAll($FILES);
})
);
});
self.addEventListener("activate", function(event) {
event.waitUntil(
caches.keys().then(function(keyList) {
return Promise.all(
keyList.map(function(key, i) {
if (key !== $CACHE_STORE) {
return caches.delete(keyList[i]);
}
})
);
})
);
});