travelynx/public/service-worker.js

50 lines
1.2 KiB
JavaScript
Raw Normal View History

2019-05-06 16:07:53 +00:00
const CACHE_NAME = 'static-cache-v14';
2019-05-03 18:43:46 +00:00
const FILES_TO_CACHE = [
'/offline.html',
2019-05-06 16:07:53 +00:00
'/static/v14/css/materialize.min.css',
'/static/v14/css/material-icons.css',
'/static/v14/css/local.css',
'/static/v14/js/jquery-3.4.1.min.js',
'/static/v14/js/materialize.min.js',
'/static/v14/js/travelynx-actions.min.js',
'/static/v14/js/autocomplete.min.js',
'/static/v14/js/geolocation.min.js',
2019-05-03 18:43:46 +00:00
];
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');
});
})
);
});