1ffd198b00
Change strategy of cache management. Today we don't have version of map building so we cannot use cache correctly. The idea is to have a less cache and keep HTPP cache management with GET method. Signed-off-by: Gregoire Parant <g.parant@thecodingmachine.com>
61 lines
1.8 KiB
JavaScript
61 lines
1.8 KiB
JavaScript
let CACHE_NAME = 'workavdenture-cache';
|
|
let urlsToCache = [
|
|
'/'
|
|
];
|
|
|
|
self.addEventListener('install', function(event) {
|
|
// Perform install steps
|
|
event.waitUntil(
|
|
caches.open(CACHE_NAME)
|
|
.then(function(cache) {
|
|
return cache.addAll(urlsToCache);
|
|
})
|
|
);
|
|
});
|
|
|
|
self.addEventListener('fetch', function(event) {
|
|
//TODO mamnage fetch data and cache management
|
|
/*event.respondWith(
|
|
caches.match(event.request)
|
|
.then(function(response) {
|
|
// Cache hit - return response
|
|
if (response) {
|
|
return response;
|
|
}
|
|
|
|
return fetch(event.request).then(
|
|
function(response) {
|
|
// Check if we received a valid response
|
|
if(!response || response.status !== 200 || response.type !== 'basic') {
|
|
return response;
|
|
}
|
|
|
|
// IMPORTANT: Clone the response. A response is a stream
|
|
// and because we want the browser to consume the response
|
|
// as well as the cache consuming the response, we need
|
|
// to clone it so we have two streams.
|
|
var responseToCache = response.clone();
|
|
|
|
caches.open(CACHE_NAME)
|
|
.then(function(cache) {
|
|
cache.put(event.request, responseToCache);
|
|
});
|
|
|
|
return response;
|
|
}
|
|
);
|
|
})
|
|
);*/
|
|
});
|
|
|
|
self.addEventListener('wait', function(event) {
|
|
//TODO wait
|
|
});
|
|
|
|
self.addEventListener('update', function(event) {
|
|
//TODO update
|
|
});
|
|
|
|
self.addEventListener('beforeinstallprompt', (e) => {
|
|
//TODO change prompt
|
|
}); |