importScripts("https://www.gstatic.com/firebasejs/8.10.0/firebase-app.js"); importScripts( "https://www.gstatic.com/firebasejs/8.10.0/firebase-messaging.js", ); firebase.initializeApp({ apiKey: "AIzaSyCTjdsk2jE34IfnvSKP1JMTIf_Abd7tbt0", authDomain: "opplens-270d1.firebaseapp.com", projectId: "opplens-270d1", storageBucket: "opplens-270d1.firebasestorage.app", messagingSenderId: "6923326255", appId: "1:6923326255:web:584a017e8e1bd0e4ed87da", measurementId: "G-VQW40G8VKC", }); const messaging = firebase.messaging(); self.addEventListener("notificationclick", (event) => { event.notification.close(); const urlToOpen = event.notification.data.url || "/"; event.waitUntil( clients .matchAll({ type: "window", includeUncontrolled: true, }) .then((clientList) => { for (const client of clientList) { if (client.url === urlToOpen && "focus" in client) { return client.focus(); } } if (clients.openWindow) { return clients.openWindow(urlToOpen); } }), ); });