2023-01-17 10:41:50 +01:00
|
|
|
var CACHE_NAME = 'pairdrop-cache-v3';
|
2018-10-24 17:43:50 +02:00
|
|
|
var urlsToCache = [
|
2020-12-29 20:08:23 +01:00
|
|
|
'index.html',
|
|
|
|
'./',
|
|
|
|
'styles.css',
|
|
|
|
'scripts/network.js',
|
|
|
|
'scripts/ui.js',
|
2023-01-17 10:41:50 +01:00
|
|
|
'scripts/util.js',
|
|
|
|
'scripts/qrcode.js',
|
|
|
|
'scripts/zip.min.js',
|
2020-12-29 20:08:23 +01:00
|
|
|
'scripts/theme.js',
|
|
|
|
'sounds/blop.mp3',
|
|
|
|
'images/favicon-96x96.png'
|
2018-10-24 17:43:50 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
self.addEventListener('install', function(event) {
|
|
|
|
// Perform install steps
|
|
|
|
event.waitUntil(
|
|
|
|
caches.open(CACHE_NAME)
|
|
|
|
.then(function(cache) {
|
|
|
|
console.log('Opened cache');
|
|
|
|
return cache.addAll(urlsToCache);
|
|
|
|
})
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
self.addEventListener('fetch', function(event) {
|
|
|
|
event.respondWith(
|
|
|
|
caches.match(event.request)
|
|
|
|
.then(function(response) {
|
|
|
|
// Cache hit - return response
|
|
|
|
if (response) {
|
|
|
|
return response;
|
|
|
|
}
|
|
|
|
return fetch(event.request);
|
|
|
|
}
|
|
|
|
)
|
|
|
|
);
|
|
|
|
});
|
2020-05-19 22:52:27 +02:00
|
|
|
|
|
|
|
|
|
|
|
self.addEventListener('activate', function(event) {
|
|
|
|
console.log('Updating Service Worker...')
|
|
|
|
event.waitUntil(
|
|
|
|
caches.keys().then(function(cacheNames) {
|
|
|
|
return Promise.all(
|
|
|
|
cacheNames.filter(function(cacheName) {
|
|
|
|
// Return true if you want to remove this cache,
|
|
|
|
// but remember that caches are shared across
|
|
|
|
// the whole origin
|
|
|
|
return true
|
|
|
|
}).map(function(cacheName) {
|
|
|
|
return caches.delete(cacheName);
|
|
|
|
})
|
|
|
|
);
|
|
|
|
})
|
|
|
|
);
|
|
|
|
});
|