-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsw.js
More file actions
81 lines (73 loc) · 2.15 KB
/
Copy pathsw.js
File metadata and controls
81 lines (73 loc) · 2.15 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
76
77
78
79
80
81
const CACHE_NAME = 'app-cache-v1';
const urlsToCache = [
'/',
'/index.html',
'https://cdn.jsdelivr.net/npm/mime-db@1.52.0/db.json',
'https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap',
'/system32.js',
'/style.css',
'/n.png',
'/nova.css',
'/scripts/edgecases.js',
'/scripts/scripties.js',
'/script.js',
'/scripts/fflate.js',
'/scripts/kernel.js',
'/scripts/readwrite.js',
'/scripts/utility.js',
'/scripts/ctxmenu.js',
];
self.addEventListener('install', (event) => {
event.waitUntil(
caches.open(CACHE_NAME)
.then((cache) => {
return cache.addAll(urlsToCache)
.catch((error) => {
console.error('Failed to cache some resources:', error);
return Promise.all(urlsToCache.map(url => {
return cache.add(url).catch(err => console.error('Failed to cache', url, err));
}));
});
})
);
});
self.addEventListener('activate', (event) => {
const cacheWhitelist = [CACHE_NAME];
event.waitUntil(
caches.keys().then((cacheNames) => {
return Promise.all(
cacheNames.map((cacheName) => {
if (!cacheWhitelist.includes(cacheName)) {
return caches.delete(cacheName);
}
})
);
})
);
});
self.addEventListener('fetch', (event) => {
event.respondWith(
caches.match(event.request)
.then((cachedResponse) => {
// If there is a cached response, return it.
if (cachedResponse) {
return cachedResponse;
}
// Otherwise, fetch from the network.
return fetch(event.request)
.then((response) => {
// Check if we got a valid response.
if (!response || response.status !== 200 || response.type !== 'basic') {
return response;
}
// Clone the response to ensure it's usable multiple times.
const responseToCache = response.clone();
caches.open(CACHE_NAME)
.then((cache) => {
cache.put(event.request, responseToCache);
});
return response;
});
})
);
});