shellphone.app/app/service-worker/notification-click.ts

33 lines
895 B
TypeScript
Raw Normal View History

2022-06-01 21:56:37 +00:00
import { removeBadge } from "~/utils/pwa.client";
declare const self: ServiceWorkerGlobalScope;
2022-06-01 21:56:37 +00:00
// noinspection TypeScriptUnresolvedVariable
export default async function handleNotificationClick(event: NotificationEvent) {
console.debug("On notification click: ", event.notification.tag);
// Android doesnt close the notification when you click on it
// See: http://crbug.com/463146
event.notification.close();
await removeBadge();
const url = getUrl(event.notification.data);
return self.clients.openWindow?.(url);
}
type NotificationData = {
recipient: string;
type: "message" | "incoming-call";
};
function getUrl(data: NotificationData) {
const recipient = encodeURIComponent(data.recipient);
switch (data.type) {
case "message":
return `/messages/${recipient}`;
case "incoming-call":
return `/incoming-call/${recipient}`;
default:
return "/messages";
}
}