1e9b7a8aa2
* remove cross-env * append build hash to service worker cache names for easy purge
20 lines
624 B
TypeScript
20 lines
624 B
TypeScript
import type { NotificationPayload } from "~/utils/web-push.server";
|
|
import { addBadge } from "~/utils/pwa.client";
|
|
|
|
declare const self: ServiceWorkerGlobalScope;
|
|
|
|
const defaultOptions: NotificationOptions = {
|
|
icon: "/icons/android-chrome-192x192.png",
|
|
badge: "/icons/android-chrome-48x48.png",
|
|
dir: "auto",
|
|
image: undefined,
|
|
silent: false,
|
|
};
|
|
|
|
export default async function handlePush(event: PushEvent) {
|
|
const { title, ...payload }: NotificationPayload = event.data!.json();
|
|
const options = Object.assign({}, defaultOptions, payload);
|
|
await self.registration.showNotification(title, options);
|
|
await addBadge(1);
|
|
}
|