-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsw.js
52 lines (46 loc) · 1.33 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
const SERVICEWORKER_CACHE_NAME = "express-gym-v1";
const staticAssets = [
"./",
"./index.html",
"./style.css",
"./index.js",
"./sw.js",
"./manifest.webmanifest",
"./assets/512px-icon.png",
"./assets/maskable-icon.png",
"./assets/svg-icon.svg",
];
self.addEventListener("install", async (err) => {
caches.delete(SERVICEWORKER_CACHE_NAME);
const cache = await caches.open(SERVICEWORKER_CACHE_NAME);
await cache.addAll(staticAssets);
return self.skipWaiting();
});
self.addEventListener("activate", (event) => {
self.clients.claim();
});
self.addEventListener("fetch", async (event) => {
const req = event.request;
const url = new URL(req.url);
if (url.origin === location.origin) {
event.respondWith(cacheFirst(req));
} else {
event.respondWith(networkAndCache(req));
}
});
async function cacheFirst(req) {
const cache = await caches.open(SERVICEWORKER_CACHE_NAME);
const cached = await cache.match(req);
return cached || fetch(req);
}
async function networkAndCache(req) {
const cache = await caches.open(SERVICEWORKER_CACHE_NAME);
try {
const fresh = await fetch(req);
await cache.put(req, fresh.clone());
return fresh;
} catch (err) {
const cached = await cache.match(req);
return cached;
}
}