mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-12 18:29:57 -05:00
9298f205fc
* Fixed CSS for Settings.tsx + new Theme Shop design * reformat * More changes to UI CSS * Small CSS fixes for Settings.tsx, Account, Bots * Updated theme shop, settings pages, cleanup * chore: force sync language submodule * fix(sidebar): prevent items from shrinking * fix(push): fix timestamp and icon for push notifications * fix(voice): hide grant permission button after grant * chore: hide new shop / chevron before merge * chore(ci): bump node to v16 in dockerfile * fix(sidebar): change width of channel sidebar Co-authored-by: trashtemp <96388163+trashtemp@users.noreply.github.com>
54 lines
1.8 KiB
TypeScript
54 lines
1.8 KiB
TypeScript
/// <reference lib="webworker" />
|
|
import { precacheAndRoute } from "workbox-precaching";
|
|
|
|
declare let self: ServiceWorkerGlobalScope;
|
|
|
|
self.addEventListener("message", (event) => {
|
|
if (event.data && event.data.type === "SKIP_WAITING") self.skipWaiting();
|
|
});
|
|
|
|
precacheAndRoute(self.__WB_MANIFEST);
|
|
|
|
self.addEventListener("push", (event) => {
|
|
async function process() {
|
|
if (event.data) {
|
|
const data = event.data.json();
|
|
await self.registration.showNotification(data.author, {
|
|
icon: data.icon,
|
|
image: data.image,
|
|
body: data.body,
|
|
timestamp: data.timestamp * 1000,
|
|
tag: data.tag,
|
|
badge: "https://app.revolt.chat/assets/icons/monochrome.svg",
|
|
data: data.url,
|
|
});
|
|
}
|
|
}
|
|
event.waitUntil(process());
|
|
});
|
|
|
|
// ? Open the app on notification click.
|
|
// https://stackoverflow.com/a/39457287
|
|
self.addEventListener("notificationclick", (event) => {
|
|
const url = event.notification.data;
|
|
event.notification.close();
|
|
event.waitUntil(
|
|
self.clients
|
|
.matchAll({ includeUncontrolled: true, type: "window" })
|
|
.then((windowClients) => {
|
|
// Check if there is already a window/tab open with the target URL
|
|
for (let i = 0; i < windowClients.length; i++) {
|
|
const client = windowClients[i];
|
|
// If so, just focus it.
|
|
if (client.url === url && "focus" in client) {
|
|
return client.focus();
|
|
}
|
|
}
|
|
|
|
// If not, then open the target URL in a new window/tab.
|
|
if (self.clients.openWindow) {
|
|
return self.clients.openWindow(url);
|
|
}
|
|
}),
|
|
);
|
|
});
|