-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsw.js
More file actions
75 lines (68 loc) · 1.92 KB
/
Copy pathsw.js
File metadata and controls
75 lines (68 loc) · 1.92 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
const CACHE = "hellenicdev-v4";
const STATIC_ASSETS = [
"/",
"/style.min.css",
"/script.min.js",
"/css/theme.css",
"/css/components.css",
"/js/filter.js",
"/logo.webp",
"/favicon.ico",
"/favicon.svg",
"/404.html",
"/offline.html",
"/privacy-policy.html"
];
self.addEventListener("install", (event) => {
event.waitUntil(
caches.open(CACHE).then((cache) => {
return cache.addAll(STATIC_ASSETS);
})
);
self.skipWaiting();
});
self.addEventListener("activate", (event) => {
event.waitUntil(
caches.keys().then((keys) =>
Promise.all(
keys.filter((k) => k !== CACHE).map((k) => caches.delete(k))
)
)
);
self.clients.claim();
});
self.addEventListener("fetch", (event) => {
const { request } = event;
if (request.method !== "GET") return;
const url = new URL(request.url);
// Skip non-GET and non-HTTP(S) requests
if (!url.protocol.startsWith("http")) return;
// Network-first for HTML pages (fresh content preferred)
if (request.headers.get("Accept")?.includes("text/html")) {
event.respondWith(
fetch(request)
.then((response) => {
if (response && response.status === 200) {
const clone = response.clone();
caches.open(CACHE).then((cache) => cache.put(request, clone));
}
return response;
})
.catch(() => caches.match(request).then((cached) => cached || caches.match("/offline.html")))
);
return;
}
// Cache-first for static assets (fonts, images, CSS, JS)
event.respondWith(
caches.match(request).then((cached) => {
const fetchPromise = fetch(request).then((response) => {
if (response && response.status === 200) {
const clone = response.clone();
caches.open(CACHE).then((cache) => cache.put(request, clone));
}
return response;
}).catch(() => cached);
return cached || fetchPromise;
})
);
});