mirror of
https://github.com/louislam/uptime-kuma.git
synced 2026-03-03 00:37:01 +00:00
36 lines
1000 B
JavaScript
36 lines
1000 B
JavaScript
self.addEventListener("install", function (event) {
|
|
self.skipWaiting();
|
|
});
|
|
|
|
// Clear old caches from vite-plugin-pwa
|
|
self.addEventListener("activate", function (event) {
|
|
event.waitUntil(
|
|
(async function () {
|
|
const cacheNames = await caches.keys();
|
|
for (const cacheName of cacheNames) {
|
|
await caches.delete(cacheName);
|
|
}
|
|
await self.clients.claim();
|
|
})()
|
|
);
|
|
});
|
|
|
|
// Receive push notifications
|
|
self.addEventListener("push", function (event) {
|
|
if (self.Notification?.permission !== "granted") {
|
|
console.error("Notifications aren't supported or permission not granted!");
|
|
return;
|
|
}
|
|
|
|
if (event.data) {
|
|
let message = event.data.json();
|
|
try {
|
|
self.registration.showNotification(message.title, {
|
|
body: message.body,
|
|
});
|
|
} catch (error) {
|
|
console.error("Failed to show notification:", error);
|
|
}
|
|
}
|
|
});
|