const CACHE_NAME = 'aethex-os-v1'; const STATIC_ASSETS = [ '/', '/manifest.json', '/favicon.png' ]; self.addEventListener('install', (event) => { event.waitUntil( caches.open(CACHE_NAME).then((cache) => { return cache.addAll(STATIC_ASSETS); }) ); self.skipWaiting(); }); self.addEventListener('activate', (event) => { event.waitUntil( caches.keys().then((cacheNames) => { return Promise.all( cacheNames .filter((name) => name !== CACHE_NAME) .map((name) => caches.delete(name)) ); }) ); self.clients.claim(); }); self.addEventListener('fetch', (event) => { const { request } = event; const url = new URL(request.url); if (request.method !== 'GET') return; if (url.pathname.startsWith('/api/')) { event.respondWith( fetch(request) .then((response) => { if (response.ok) { const responseClone = response.clone(); caches.open(CACHE_NAME).then((cache) => { cache.put(request, responseClone); }); } return response; }) .catch(() => caches.match(request)) ); return; } event.respondWith( caches.match(request).then((cached) => { const fetchPromise = fetch(request).then((response) => { if (response.ok) { const responseClone = response.clone(); caches.open(CACHE_NAME).then((cache) => { cache.put(request, responseClone); }); } return response; }); return cached || fetchPromise; }) ); });