mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-03-22 00:17:15 +00:00
fullscreen behaviour improvement, PiP improvement, subtitle handling, multi-track support for player and parser, PWA work
53 lines
1.5 KiB
JavaScript
53 lines
1.5 KiB
JavaScript
'use strict';
|
|
|
|
const CACHE_NAME = 'static-cache-v1';
|
|
|
|
const FILES_TO_CACHE = [
|
|
'/offline.html',
|
|
];
|
|
|
|
self.addEventListener('install', (evt) => {
|
|
console.log('[ServiceWorker] Install');
|
|
// CODELAB: Precache static resources here.
|
|
evt.waitUntil(
|
|
caches.open(CACHE_NAME).then((cache) => {
|
|
console.log('[ServiceWorker] Pre-caching offline page');
|
|
return cache.addAll(FILES_TO_CACHE);
|
|
})
|
|
);
|
|
self.skipWaiting();
|
|
});
|
|
|
|
self.addEventListener('activate', (evt) => {
|
|
console.log('[ServiceWorker] Activate');
|
|
// CODELAB: Remove previous cached data from disk.
|
|
evt.waitUntil(
|
|
caches.keys().then((keyList) => {
|
|
return Promise.all(keyList.map((key) => {
|
|
if (key !== CACHE_NAME) {
|
|
console.log('[ServiceWorker] Removing old cache', key);
|
|
return caches.delete(key);
|
|
}
|
|
}));
|
|
})
|
|
);
|
|
self.clients.claim();
|
|
});
|
|
|
|
self.addEventListener('fetch', (evt) => {
|
|
console.log('[ServiceWorker] Fetch', evt.request.url);
|
|
// CODELAB: Add fetch event handler here.
|
|
if (evt.request.mode !== 'navigate') {
|
|
// Not a page navigation, bail.
|
|
return;
|
|
}
|
|
evt.respondWith(
|
|
fetch(evt.request)
|
|
.catch(() => {
|
|
return caches.open(CACHE_NAME)
|
|
.then((cache) => {
|
|
return cache.match('offline.html');
|
|
});
|
|
})
|
|
);
|
|
});
|