-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice-worker.js
51 lines (47 loc) · 1.19 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
// Define a name for the current cache
var cacheName = 'v1';
// List all the files you want to cache
var cacheFiles = [
'/CrisisHotlines/',
'/CrisisHotlines/index.html',
'/CrisisHotlines/style.css',
'/CrisisHotlines/script.js',
'/CrisisHotlines/information.min.json',
'https://sandunwira.github.io/CrisisHotlines/favicon.png'
// Add other files and assets here
];
// Call Install Event
self.addEventListener('install', function (e) {
e.waitUntil(
caches.open(cacheName).then(function (cache) {
return cache.addAll(cacheFiles);
})
);
});
// Call Activate Event
self.addEventListener('activate', function (e) {
e.waitUntil(
caches.keys().then(function (cacheNames) {
return Promise.all(
cacheNames.map(function (thisCacheName) {
if (thisCacheName !== cacheName) {
return caches.delete(thisCacheName);
}
})
)
})
)
});
// Call Fetch Event
self.addEventListener('fetch', function (e) {
e.respondWith(
caches.match(e.request).then(function (res) {
return res || fetch(e.request).then(function (response) {
return caches.open(cacheName).then(function (cache) {
cache.put(e.request, response.clone());
return response;
});
});
})
);
});