-
Notifications
You must be signed in to change notification settings - Fork 1
/
sw.js
executable file
·59 lines (54 loc) · 1.52 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
const CACHE_NAME = 'lcarsde-github-io-6',
ALL_CACHES = [ // need any here for includes
CACHE_NAME
];
self.addEventListener('install', (event) => {
event.waitUntil(
caches.open(CACHE_NAME)
.then((cache) => {
return cache.addAll([
'index.html',
'installation.html',
'manual.html',
'about.html',
'links.html',
'whoops.html',
'style.css',
'images/icon-192.png',
'font/LCARSGTJ3.ttf',
'font/LCARSGTJ3.woff',
]);
})
);
});
self.addEventListener('activate', (event) => {
event.waitUntil(
caches.keys()
.then((cacheNames) => {
return Promise.all(
cacheNames.filter((cacheName) => {
return cacheName.startsWith('lcarsde-github-io')
&& !ALL_CACHES.includes(cacheName);
}).map((cacheName) => caches.delete(cacheName))
);
})
);
});
self.addEventListener('fetch', (event) => {
const networkFetch = fetch(event.request);
const requestUrl = new URL(event.request.url);
if (requestUrl.origin === location.origin) {
event.waitUntil(
networkFetch.then(response => {
const responseClone = response.clone();
const request = requestUrl.pathname === '/' ? 'index.html' : event.request;
caches.open(CACHE_NAME)
.then(cache => cache.put(request, responseClone));
})
);
}
event.respondWith(
caches.match(event.request)
.then((response) => response ?? networkFetch)
);
});