-
Notifications
You must be signed in to change notification settings - Fork 0
/
sw.js
64 lines (57 loc) · 1.81 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
57
58
59
60
61
62
63
64
const staticCacheName = 'currency-converter';
const allCaches = [
staticCacheName,
];
self.addEventListener('install', (event) => {
event.waitUntil(
caches.open(staticCacheName).then((cache) => {
return cache.addAll([
// '/',
'/IndexController.js',
'/index.html',
'/index.css',
'https://free.currencyconverterapi.com/api/v5/countries',
'https://free.currencyconverterapi.com/api/v5/currencies',
]);
})
);
});
self.addEventListener('activate',(event) => {
event.waitUntil(
caches.keys().then((cacheNames) => {
return Promise.all(
cacheNames.filter((cacheName) => {
return cacheName.startsWith('currency-') &&
!allCaches.includes(cacheName);
}).map((cacheName) => {
return caches.delete(cacheName);
})
);
})
);
});
self.addEventListener('fetch', (event) => {
let requestUrl = new URL(event.request.url);
if (requestUrl.origin === location.origin) {
if (requestUrl.pathname === '/') {
event.respondWith(caches.match('/index.html'));
return;
}
}
event.respondWith(
caches.match(event.request).then((response) => {
if (response) return response;
return fetch(event.request).then(function(networkResponse) {
caches.open(staticCacheName).then((cache) => {
// cache.put(requestUrl, networkResponse);
})
return networkResponse;
});
})
);
});
self.addEventListener('message', (event) => {
if (event.data.action === 'skipWaiting') {
self.skipWaiting();
}
});