Update service-worker.js

This commit is contained in:
FURK4NGG
2025-03-03 21:47:43 +03:00
committed by GitHub
parent f678f5bddf
commit 2e401657dd
+12 -16
View File
@@ -1,4 +1,4 @@
const CURRENT_VERSION = 'v40';
const CURRENT_VERSION = 'v42';
const CACHE_NAME = `cache-${CURRENT_VERSION}`;
const urlsToCache = [
@@ -60,23 +60,19 @@ self.addEventListener('fetch', event => {
// Activate event - delete old caches and update clients
self.addEventListener('activate', event => {
event.waitUntil(
caches.keys().then(cacheNames => {
return Promise.all(
cacheNames.map(cacheName => {
event.waitUntil((async () => {
const cacheNames = await caches.keys();
for (const cacheName of cacheNames) {
if (cacheName.startsWith('cache-') && cacheName !== CACHE_NAME) {
console.log(`Deleting old cache: ${cacheName}`);
return caches.delete(cacheName);
await caches.delete(cacheName);
}
}
})
);
}).then(() => {
console.log(`Cache updated to version: ${CURRENT_VERSION}`);
return self.clients.claim();
}).then(() => {
self.clients.matchAll().then(clients => {
clients.forEach(client => client.navigate(client.url)); // Tüm sayfaları yenile
});
})
);
await self.clients.claim();
// Tüm açık sekmeleri yeni versiyona yönlendir
const clients = await self.clients.matchAll({ type: 'window' });
clients.forEach(client => client.navigate(client.url));
})());
});