-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsw.js
More file actions
45 lines (41 loc) · 1.21 KB
/
sw.js
File metadata and controls
45 lines (41 loc) · 1.21 KB
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
const version = 'v1';
self.addEventListener('install', function(event) {
console.log("Install", version);
event.waitUntil(
caches.open(version).then(function(cache) {
return cache.addAll([
'index.htm',
'tachyons.css',
'petite-vue.js',
'elements.js',
'cuid.js',
'icon.png',
'notfound.txt'
]);
})
);
});
self.addEventListener('fetch', function(event) {
event.respondWith(caches.match(event.request).then(function(response) {
// caches.match() always resolves
// but in case of success response will have value
if (response !== undefined) {
//console.log("Return", response);
return response;
} else {
//console.log("Need to fetch");
return fetch(event.request).then(function (response) {
// response may be used only once
// we need to save clone to put one copy in cache
// and serve second one
let responseClone = response.clone();
caches.open(version).then(function (cache) {
cache.put(event.request, responseClone);
});
return response;
}).catch(function () {
return caches.match('/notfound.txt');
});
}
}));
});