52 lines
1.2 KiB
JavaScript
52 lines
1.2 KiB
JavaScript
// Service Worker for Web Push Notifications
|
|
const CACHE_NAME = 'app-v1';
|
|
|
|
self.addEventListener('push', (event) => {
|
|
if (!event.data) return;
|
|
|
|
let data;
|
|
try {
|
|
data = event.data.json();
|
|
} catch {
|
|
data = { title: 'Notification', body: event.data.text() };
|
|
}
|
|
|
|
const options = {
|
|
body: data.body || '',
|
|
icon: data.icon || '/icon.png',
|
|
badge: '/badge.png',
|
|
data: { url: data.url || '/' },
|
|
vibrate: [200, 100, 200],
|
|
requireInteraction: false,
|
|
};
|
|
|
|
event.waitUntil(
|
|
self.registration.showNotification(data.title || 'App Notification', options)
|
|
);
|
|
});
|
|
|
|
self.addEventListener('notificationclick', (event) => {
|
|
event.notification.close();
|
|
|
|
const url = event.notification.data?.url || '/';
|
|
|
|
event.waitUntil(
|
|
self.clients.matchAll({ type: 'window', includeUncontrolled: true }).then((clients) => {
|
|
for (const client of clients) {
|
|
if (client.url === url && 'focus' in client) {
|
|
return client.focus();
|
|
}
|
|
}
|
|
return self.clients.openWindow(url);
|
|
})
|
|
);
|
|
});
|
|
|
|
self.addEventListener('install', () => {
|
|
self.skipWaiting();
|
|
});
|
|
|
|
self.addEventListener('activate', (event) => {
|
|
event.waitUntil(self.clients.claim());
|
|
});
|