-
Notifications
You must be signed in to change notification settings - Fork 3
/
sw.js
40 lines (37 loc) · 1.04 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
// Service Worker
const cacheName = "my-pwa-shell";
const filesToCache = [
"/",
"index.html",
"./js/index.js",
"./styles/styles.css"
];
self.addEventListener("install", e => {
console.log("[ServiceWorker**] - Install");
e.waitUntil(
caches.open(cacheName).then(cache => {
console.log("[ServiceWorker**] - Caching app shell");
return cache.addAll(filesToCache);
})
);
});
self.addEventListener("activate", event => {
caches.keys().then(keyList => {
return Promise.all(
keyList.map(key => {
if (key !== cacheName) {
console.log("[ServiceWorker] - Removing old cache", key);
return caches.delete(key);
}
})
);
});
event.waitUntil(self.clients.claim());
});
self.addEventListener("fetch", event => {
event.respondWith(
caches.match(event.request, { ignoreSearch: true }).then(response => {
return response || fetch(event.request);
})
);
});