forked from niryariv/uzevius
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsw.js
28 lines (24 loc) · 725 Bytes
/
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
// https://vaadin.com/learn/tutorials/learn-pwa/turn-website-into-a-pwa
self.addEventListener('install', async event => {
console.log('SW install');
const cache = await caches.open(cacheName);
await cache.addAll(staticAssets);
});
self.addEventListener('fetch', async event => {
console.log('SW fetch');
const req = event.request;
event.respondWith(cacheFirst(req));
});
async function cacheFirst(req) {
const cache = await caches.open(cacheName);
const cachedResponse = await cache.match(req);
return cachedResponse || fetch(req);
}
const cacheName = 'uzevius-v1';
const staticAssets = [
'./',
'./index.html',
'./code.js',
'./style.css',
'./data/points.geojson'
];