forked from BolajiAyodeji/day-of-birth-finder
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathservice-worker.js
65 lines (62 loc) · 2.79 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
55
56
57
58
59
60
61
62
63
64
65
// after a service worker is installed and the user navigates to a different page or
// refreshes,the service worker will begin to receive fetch events
self.addEventListener('fetch', function(event) {
event.respondWith(
caches.open('cache').then(function(cache) {
return cache.match(event.request).then(function(response) {
console.log('cache request: ' + event.request.url)
var fetchPromise = fetch(event.request).then(
function(networkResponse) {
// if we got a response from the cache, update the cache
console.log(
'fetch completed: ' + event.request.url,
networkResponse
)
if (networkResponse) {
console.debug(
'updated cached page: ' + event.request.url,
networkResponse
)
cache.put(event.request, networkResponse.clone())
}
return networkResponse
},
function(event) {
// rejected promise - just ignore it, we're offline!
console.log('Error in fetch()', event)
event.waitUntil(
caches.open('cache').then(function(cache) {
// our cache is named *cache* in the caches.open() above
return cache.addAll([
//cache.addAll(), takes a list of URLs, then fetches them from the server
// and adds the response to the cache.
// add your entire site to the cache- as in the code below; for offline access
// If you have some build process for your site, perhaps that could
// generate the list of possible URLs that a user might load.
'/', // do not remove this
'/index.html', //default
'/index.html?homescreen=1', //default
'/?homescreen=1', //default
'/css/app.css', // configure as by your site ; just an example
'/img/icons/icon-96x96.png', // choose images to keep offline; just an example
// Do not replace/delete/editmganifest.js path below
'/manifest.js',
//These are links to the extenal social media buttons that should be cached;
// we have used twitter's as an example
'https://platform.twitter.com/widgets.js',
])
})
)
}
)
// respond from the cache, or the network
return response || fetchPromise
})
})
)
})
self.addEventListener('install', function(event) {
// The promise that skipWaiting() returns can be safely ignored.
self.skipWaiting()
console.log('Latest version installed!')
})