-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsw.js
More file actions
59 lines (50 loc) · 1.7 KB
/
sw.js
File metadata and controls
59 lines (50 loc) · 1.7 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
46
47
48
49
50
51
52
53
54
55
56
57
var RUNTIME = 'runtime';
var PRECACHE_URLS = [
//'/Client',
// '/m',
// '/Client/js/mobile.js',
// '/Client/mobile/index.html'
];
this.addEventListener('install', function (event) {
event.waitUntil(
caches.open('v1').then(function (cache) {
return cache.addAll(PRECACHE_URLS);
})
);
});
//this.addEventListener("activate", function (event) {
// event.waitUntil(
// caches.keys().then(function (cacheNames) {
// return Promise.all(
// cacheNames.map(function (cacheName) {
// if (CACHE_NAME !== cacheName) {
// return caches.delete(cacheName);
// }
// })
// );
// })
// );
//});
this.addEventListener('fetch', function (event) {
// C'est là que la magie opère, Noël !
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) {
return response;
} else {
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('v1').then(function (cache) {
// cache.put(event.request, responseClone);
});
return response;
}).catch(function () {
return caches.match('/sw-test/gallery/myLittleVader.jpg');
});
}
}));
});