-
Notifications
You must be signed in to change notification settings - Fork 32
/
service-worker.js
53 lines (47 loc) · 1.36 KB
/
service-worker.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
let cacheName = "OpenGithubPWA";// 👈 any unique name
let filesToCache = [
"/OpenPWA/", // 👈 your repository name , both slash are important
"service-worker.js",
"js/main.js",
"js/install-handler.js",
"js/settings.js",
"css/main.css",
"assets/icons/icon.png",
"manifest.json"
// add your assets here
// ❗️❕donot add config.json here ❗️❕
];
self.addEventListener("install", function (event) {
event.waitUntil(caches.open(cacheName).then((cache) => {
console.log('installed successfully')
return cache.addAll(filesToCache);
}));
});
self.addEventListener('fetch', function (event) {
if (event.request.url.includes('clean-cache')) {
caches.delete(cacheName);
console.log('Cache cleared')
}
event.respondWith(caches.match(event.request).then(function (response) {
if (response) {
console.log('served form cache')
} else {
console.log('Not serving from cache ', event.request.url)
}
return response || fetch(event.request);
})
);
});
self.addEventListener('activate', function (e) {
e.waitUntil(
caches.keys().then(function (keyList) {
return Promise.all(keyList.map(function (key) {
if (key !== cacheName) {
console.log('service worker: Removing old cache', key);
return caches.delete(key);
}
}));
})
);
return self.clients.claim();
});