-
Notifications
You must be signed in to change notification settings - Fork 0
/
service-worker.js
55 lines (51 loc) · 1.72 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
const PRECACHE = 'precache-v3.7.2';
const RUNTIME = 'runtime-v3.7.2';
// A list of local resources we always want to be cached.
const PRECACHE_URLS = [
'/about.html',
'/weatherIcons/sunny.png',
'/weatherIcons/partlyCloudy.png',
'/weatherIcons/cloudy.png',
'/weatherIcons/rainy.png',
'/weatherIcons/thunderStorm.png'
];
// The install handler takes care of precaching the resources we always need.
self.addEventListener('install', event => {
event.waitUntil(
caches.open(PRECACHE)
.then(cache => cache.addAll(PRECACHE_URLS))
.then(self.skipWaiting())
);
});
// The activate handler takes care of cleaning up old caches.
self.addEventListener('activate', event => {
const currentCaches = [PRECACHE, RUNTIME];
event.waitUntil(
caches.keys().then(cacheNames => {
return cacheNames.filter(cacheName => !currentCaches.includes(cacheName));
}).then(cachesToDelete => {
return Promise.all(cachesToDelete.map(cacheToDelete => {
return caches.delete(cacheToDelete);
}));
}).then(() => self.clients.claim())
);
});
// The fetch handler serves cached assets if available, otherwise fetches them from the server
self.addEventListener('fetch', function(event) {
if (event.request.cache === 'only-if-cached' && event.request.mode !== 'same-origin') {
return;
}
if (event.request.url.startsWith(self.location.origin)) {
event.respondWith(
caches.open('RUNTIME').then(function(cache) {
return cache.match(event.request).then(function(response) {
var fetchPromise = fetch(event.request).then(function(networkResponse) {
cache.put(event.request, networkResponse.clone());
return networkResponse;
})
return response || fetchPromise;
})
})
);
}
});