blob: a2d4ea8d0af8a1824e9ea6c838936d741ea0d193 (
plain)
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
|
const CACHE_NAME = 'static-cache-v12';
const FILES_TO_CACHE = [
'/offline.html',
'/static/v12/css/materialize.min.css',
'/static/v12/css/material-icons.css',
'/static/v12/css/local.css',
'/static/v12/js/jquery-3.4.1.min.js',
'/static/v12/js/materialize.min.js',
'/static/v12/js/travelynx-actions.min.js',
'/static/v12/js/autocomplete.min.js',
'/static/v12/js/geolocation.min.js',
];
self.addEventListener('install', (evt) => {
evt.waitUntil(
caches.open(CACHE_NAME).then((cache) => {
return cache.addAll(FILES_TO_CACHE);
})
);
self.skipWaiting();
});
self.addEventListener('activate', (evt) => {
evt.waitUntil(
caches.keys().then((keyList) => {
return Promise.all(keyList.map((key) => {
if (key !== CACHE_NAME) {
return caches.delete(key);
}
}));
})
);
self.clients.claim();
});
self.addEventListener('fetch', (evt) => {
if (evt.request.mode !== 'navigate') {
return;
}
evt.respondWith(
fetch(evt.request)
.catch(() => {
return caches.open(CACHE_NAME)
.then((cache) => {
return cache.match('offline.html');
});
})
);
});
|