-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
serviceWorker.js
91 lines (89 loc) · 2.48 KB
/
serviceWorker.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
const staticCache = "QuranIPFS-cache-v55";
const dynamicCache = "QuranIPFS-dynamic-v55";
const assets = [
"/",
"./index.html",
"./FR/index.html",
"./EN/index.html",
"./fallback.html",
"./css/style.css",
"./favicon.ico",
"./images/16x16.png",
"./images/32x32.png",
"./images/96x96.png",
"./images/128x128.png",
"./images/144x144.png",
"./images/192x192.png",
"./images/256x256.png",
"./images/384x384.png",
"./images/512x512.png",
"./images/favicon.ico",
"./images/original.png",
"./images/github-logo",
"https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css",
"https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js",
"https://code.jquery.com/jquery-3.6.0.min.js",
"https://cdn.jsdelivr.net/npm/lozad/dist/lozad.min.js",
"https://cdn.jsdelivr.net/npm/aplayer@1.10.0/dist/APlayer.min.css",
"https://cdn.jsdelivr.net/npm/hls.js/dist/hls.min.js",
"https://cdn.jsdelivr.net/npm/aplayer@1.10.1/dist/APlayer.min.js",
"./js/firebase.js",
"./js/app.js",
"./fonts/QuranIPFS.svg",
"./fonts/QuranIPFS.ttf",
"./fonts/QuranIPFS.woff",
];
// cache size limit function
const limitCacheSize = (name, size) => {
caches.open(name).then((cache) => {
cache.keys().then((keys) => {
if (keys.length > size) {
cache.delete(keys[0]).then(limitCacheSize(name, size));
}
});
});
};
self.addEventListener("install", (installEvent) => {
installEvent.waitUntil(
caches.open(staticCache).then((cache) => {
cache.addAll(assets);
})
);
});
// activate event
self.addEventListener("activate", (evt) => {
evt.waitUntil(
caches.keys().then((keys) => {
return Promise.all(
keys
.filter((key) => key !== staticCache && key !== dynamicCache)
.map((key) => caches.delete(key))
);
})
);
});
// fetch event
self.addEventListener("fetch", (evt) => {
evt.respondWith(
caches
.match(evt.request)
.then((cacheRes) => {
return (
cacheRes ||
fetch(evt.request).then((fetchRes) => {
return caches.open(dynamicCache).then((cache) => {
cache.put(evt.request.url, fetchRes.clone());
// check cached items size
limitCacheSize(dynamicCache, 30);
return fetchRes;
});
})
);
})
.catch(() => {
if (evt.request.url.indexOf(".html") > -1) {
return caches.match("/fallback.html");
}
})
);
});