1
0
mirror of https://github.com/SuperBFG7/ympd synced 2024-06-28 23:53:15 +00:00
ympd/htdocs/sw.js
jcorporation a46a9acebc feat: Implement ServiceWorker
feat: Implement A2H
2018-07-16 18:33:20 +01:00

57 lines
1.6 KiB
JavaScript

var CACHE_NAME = 'myMPD-cache-v1';
var urlsToCache = [
'/',
'/player.html',
'/css/bootstrap.min.css',
'/css/mpd.css',
'/js/bootstrap-native-v4.min.js',
'/js/mpd.js',
'/js/player.js',
'/assets/appicon-167.png',
'/assets/appicon-192.png',
'/assets/appicon-512.png',
'/assets/coverimage-httpstream.png',
'/assets/coverimage-notavailable.png',
'/assets/favicon.ico',
'/assets/MaterialIcons-Regular.eot',
'/assets/MaterialIcons-Regular.ttf',
'/assets/MaterialIcons-Regular.woff',
'/assets/MaterialIcons-Regular.woff2'
];
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
else
return fetch(event.request);
})
);
});
self.addEventListener('activate', function(event) {
var cacheWhitelist = ['myMPD-cache-v1'];
event.waitUntil(
caches.keys().then(function(cacheNames) {
return Promise.all(
cacheNames.map(function(cacheName) {
if (cacheWhitelist.indexOf(cacheName) === -1)
return caches.delete(cacheName);
})
);
})
);
});