travelynx/public/service-worker.js
Birte Kristina Friesel eb7000429e
release assets
2023-10-05 06:59:47 +02:00

53 lines
1.3 KiB
JavaScript

const CACHE_NAME = 'static-cache-v63';
const FILES_TO_CACHE = [
'/favicon.ico',
'/offline.html',
'/static/v63/css/light.min.css',
'/static/v63/css/dark.min.css',
'/static/v63/css/material-icons.css',
'/static/v63/fonts/MaterialIcons-Regular.woff2',
'/static/v63/fonts/MaterialIcons-Regular.woff',
'/static/v63/fonts/MaterialIcons-Regular.ttf',
'/static/v63/js/jquery-3.4.1.min.js',
'/static/v63/js/materialize.min.js',
'/static/v63/js/travelynx-actions.min.js',
'/static/v63/js/autocomplete.min.js',
'/static/v63/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');
});
})
);
});