-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserviceworker.js
More file actions
executable file
·41 lines (33 loc) · 1.09 KB
/
serviceworker.js
File metadata and controls
executable file
·41 lines (33 loc) · 1.09 KB
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
// Strategic Machines Progressive Web App
// This code is used to register a service worker.
const staticAssets = [
];
self.addEventListener('install', async event => {
const cache = await caches.open('static-cache');
cache.addAll(staticAssets);
});
self.addEventListener('fetch', event => {
const req = event.request;
const url = new URL(req.url);
if (url.origin === location.url) {
event.respondWith(cacheFirst(req));
} else {
event.respondWith(networkFirst(req));
}
});
async function cacheFirst(req) {
const cachedResponse = caches.match(req);
return cachedResponse || fetch(req);
}
async function networkFirst(req) {
const cache = await caches.open('dynamic-cache')
try {
const res = await fetch(req)
// throws an error on put requests - see solution here
// https://stackoverflow.com/questions/35270702/can-service-workers-cache-post-requests
//cache.put(req, res.clone())
return res;
} catch (error) {
return await cache.match(req)
}
}