-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathservice-worker.js
54 lines (43 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
48
49
50
51
52
53
54
let cacheName = 'v1';
let cacheFiles = [
'./index.php',
'./js/app.js',
'./style.css',
'./tankapp.json',
'./tankapp.webmanifest',
'./data.php'
]
self.addEventListener('install', function(e){
console.log('[Service Worker] Installed')
e.waitUntil(
caches.open(cacheName).then(function(cache){
console.log('[Service Worker] Caching cacheFiles')
return cache.addAll(cacheFiles)
})
)
})
self.addEventListener('activate', function(e){
console.log('[Service Worker] Activated')
e.waitUntil(
caches.keys().then(function(cacheNames){
return Promise.all(cacheNames.map(function(thisCacheName){
if(thisCacheName !== cacheName){
console.log('[Service Worker] Removing Cache Files from', thisCacheName)
return caches.delete(thisCacheName)
}
}))
})
)
})
self.addEventListener('fetch', function(e){
console.log('[Service Worker] Fetching', e.request.url)
e.respondWith(
caches.match(e.request).then(function(response){
if( response ){
console.log("[Service Worker] Found in cache", e.request.url)
return response
}
return fetch(e.request)
})
)
})