mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
* Use local copy of workbox service worker scripts * Refactor workbox integration: - Only add prod js, without maps. Reduces the size from 170k to 24k - Removed it from build. As it is small now, we can add it to source, and have a script to just update it whenever it is required - Fixed relative paths in navidrome-service-worker.js, should now work with BaseUrl != '' Co-authored-by: Deluan <deluan@navidrome.org>
53 lines
1.5 KiB
JavaScript
53 lines
1.5 KiB
JavaScript
// documentation: https://developers.google.com/web/tools/workbox/modules/workbox-sw
|
|
importScripts('3rdparty/workbox/workbox-sw.js')
|
|
|
|
workbox.setConfig({
|
|
modulePathPrefix: '3rdparty/workbox/',
|
|
debug: false,
|
|
})
|
|
|
|
workbox.loadModule('workbox-core');
|
|
workbox.loadModule('workbox-strategies');
|
|
workbox.loadModule('workbox-routing');
|
|
workbox.loadModule('workbox-navigation-preload');
|
|
|
|
workbox.core.clientsClaim();
|
|
self.skipWaiting();
|
|
|
|
addEventListener('message', (event) => {
|
|
if (event.data && event.data.type === 'SKIP_WAITING') {
|
|
skipWaiting();
|
|
}
|
|
});
|
|
|
|
|
|
const CACHE_NAME = 'offline-html';
|
|
// This assumes /offline.html is a URL for your self-contained
|
|
// (no external images or styles) offline page.
|
|
const FALLBACK_HTML_URL = './offline.html';
|
|
// Populate the cache with the offline HTML page when the
|
|
// service worker is installed.
|
|
self.addEventListener('install', async (event) => {
|
|
event.waitUntil(
|
|
caches.open(CACHE_NAME)
|
|
.then((cache) => cache.add(FALLBACK_HTML_URL))
|
|
);
|
|
});
|
|
|
|
const networkOnly = new workbox.strategies.NetworkOnly();
|
|
const navigationHandler = async (params) => {
|
|
try {
|
|
// Attempt a network request.
|
|
return await networkOnly.handle(params);
|
|
} catch (error) {
|
|
// If it fails, return the cached HTML.
|
|
return caches.match(FALLBACK_HTML_URL, {
|
|
cacheName: CACHE_NAME,
|
|
});
|
|
}
|
|
};
|
|
|
|
// Register this strategy to handle all navigations.
|
|
workbox.routing.registerRoute(
|
|
new workbox.routing.NavigationRoute(navigationHandler)
|
|
);
|