var VERSION = 'v70 - 2024-09-10';
var toCache = [
'/',
'activePage.js',
'activePage.js.map',
'config.js',
'config.js.map',
'favicon.ico',
'hesla.js',
'hesla.js.map',
'android-chrome-192x192.png',
'android-chrome-512x512.png',
'apple-touch-icon.png',
'favicon-16x16.png',
'favicon-32x32.png',
'lamb-of-God.svg',
'index_de.html',
'index.html',
'screen.css',
'manifest.json'
];
self.addEventListener('install', event => {
console.log('install version = ' + VERSION);
event.waitUntil(
caches.open(VERSION)
.then(
c => c.addAll(toCache)
.then(v => console.log('Yay!' + VERSION), e => console.log('Error'))
)
);
});
self.addEventListener('activate', event => {
console.log('activate version = ' + VERSION);
console.log('keys:\n' + caches.keys());
event.waitUntil(caches.keys().then(
keys => Promise.all(
keys.filter(key => key != VERSION).
map(key => caches.delete(key))
)
)
);
});
self.addEventListener('fetch', function(event) {
event.respondWith(caches.match(event.request).then(function(response) {
// caches.match() always resolves
// but in case of success response will have value
if (response !== undefined) {
return response;
} else {
return fetch(event.request).then(function (response) {
// response may be used only once
// we need to save clone to put one copy in cache
// and serve second one
let responseClone = response.clone();
caches.open(VERSION).then(function (cache) {
cache.put(event.request, responseClone);
});
return response;
}).catch(function () {
return caches.match('/sw-test/gallery/myLittleVader.jpg');
});
}
}));
});