-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsw.js
56 lines (44 loc) · 1.14 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//console.log("service worker disabled for idb, reenable when done");
const nameOfCache = "restuarant-app-v1";
self.addEventListener('install', function(event){
event.waitUntil(
caches.open(nameOfCache).then(function(cache){
return cache.addAll([
'/',
'js/dbhelper.js',
'js/main.js',
'js/restaurant_info.js',
'js/idb.js',
'js/index.js',
'css/styles.css',
'img/',
'restaurant.html',
'index.html',
'data/restaurants.json'
]);
})
);
});
self.addEventListener('activate', event => {
//Allows pages to be controlled immediately (no reload)
event.waitUntil(self.clients.claim());
});
self.addEventListener('fetch', function(event){
event.respondWith(
// checks cache
caches.match(event.request, {ignoreSearch: true}).then(response => {
return response || fetch(event.request);
})
);
});
//network falling back to cache - might need for optimisation
/*
self.addEventListener('fetch', function(event){
event.respondWith(
// checks cache
fetch(event.request).catch(function(){
return caches.match(event.request, {ignoreSearch: true});
})
);
});
*/