Files
clinicpro/public/sw.js
T
2026-06-13 13:28:39 +03:30

79 lines
2.5 KiB
JavaScript

const CACHE_NAME = 'clinicpro-admin-v1';
const BUILD_CACHE = 'clinicpro-build-v1';
const SHELL_URLS = [
'/admin',
'/manifest.json',
'/icons/icon-192.png',
'/icons/icon-512.png',
];
// ── Install: cache the app shell ──────────────────────────────────────────────
self.addEventListener('install', (event) => {
event.waitUntil(
caches.open(CACHE_NAME).then((cache) => cache.addAll(SHELL_URLS))
);
self.skipWaiting();
});
// ── Activate: clean up old caches ─────────────────────────────────────────────
self.addEventListener('activate', (event) => {
event.waitUntil(
caches.keys().then((keys) =>
Promise.all(
keys
.filter((k) => k !== CACHE_NAME && k !== BUILD_CACHE)
.map((k) => caches.delete(k))
)
)
);
self.clients.claim();
});
// ── Fetch ─────────────────────────────────────────────────────────────────────
self.addEventListener('fetch', (event) => {
const { request } = event;
const url = new URL(request.url);
// Only handle same-origin requests
if (url.origin !== self.location.origin) return;
// API calls → Network only, never cache
if (url.pathname.startsWith('/api/')) {
return;
}
// Build assets (/build/) → Cache First
if (url.pathname.startsWith('/build/')) {
event.respondWith(
caches.open(BUILD_CACHE).then(async (cache) => {
const cached = await cache.match(request);
if (cached) return cached;
const response = await fetch(request);
if (response.ok) cache.put(request, response.clone());
return response;
})
);
return;
}
// Navigation to /admin/* → Network First, fallback to cached shell
if (request.mode === 'navigate' && url.pathname.startsWith('/admin')) {
event.respondWith(
fetch(request)
.then((response) => {
const clone = response.clone();
caches.open(CACHE_NAME).then((cache) => cache.put(request, clone));
return response;
})
.catch(() => caches.match('/admin'))
);
return;
}
// Everything else → Network First with cache fallback
event.respondWith(
fetch(request).catch(() => caches.match(request))
);
});