ae589eed92
display: flex on .pwa-hint overrode the hidden attribute; bump static cache to v4. Co-authored-by: Cursor <cursoragent@cursor.com>
40 lines
1.0 KiB
JavaScript
40 lines
1.0 KiB
JavaScript
const CACHE = "if-viewer-static-v4";
|
|
const ASSETS = [
|
|
"/static/style.css",
|
|
"/static/favicon.svg",
|
|
"/static/icon-192.png",
|
|
"/static/icon-512.png",
|
|
"/static/icon-monochrome.png",
|
|
"/static/i18n.js",
|
|
"/static/locales/en.json",
|
|
"/static/locales/de.json",
|
|
];
|
|
|
|
self.addEventListener("install", (event) => {
|
|
event.waitUntil(
|
|
caches.open(CACHE)
|
|
.then((cache) => cache.addAll(ASSETS))
|
|
.then(() => self.skipWaiting())
|
|
);
|
|
});
|
|
|
|
self.addEventListener("activate", (event) => {
|
|
event.waitUntil(
|
|
caches.keys()
|
|
.then((keys) => Promise.all(keys.filter((k) => k !== CACHE).map((k) => caches.delete(k))))
|
|
.then(() => self.clients.claim())
|
|
);
|
|
});
|
|
|
|
self.addEventListener("fetch", (event) => {
|
|
if (event.request.method !== "GET") return;
|
|
|
|
const url = new URL(event.request.url);
|
|
if (url.pathname.includes("/api/")) return;
|
|
if (!url.pathname.startsWith("/static/")) return;
|
|
|
|
event.respondWith(
|
|
caches.match(event.request).then((cached) => cached || fetch(event.request))
|
|
);
|
|
});
|