/* Imported into the generated service worker (workbox importScripts). Handles Web Push for goal/kickoff alerts — additive only. */ self.addEventListener('push', (event) => { if (!event.data) return; let data = {}; try { data = event.data.json(); } catch { return; } if (!data.title) return; event.waitUntil( self.registration.showNotification(data.title, { body: data.body || '', icon: '/pwa-192x192.png', badge: '/pwa-192x192.png', data: { url: data.url || '/' }, }), ); }); self.addEventListener('notificationclick', (event) => { event.notification.close(); const url = (event.notification.data && event.notification.data.url) || '/'; event.waitUntil( clients.matchAll({ type: 'window', includeUncontrolled: true }).then((list) => { for (const c of list) { if ('focus' in c) { c.navigate(url); return c.focus(); } } return clients.openWindow(url); }), ); });