mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-21 18:04:39 -05:00
* Initial * Progress * Fix * Progress * Notifications list page * BADGE_MANAGER_ADDED * Mark as seen initial * Split tables * Progress * Fix styles * Push notifs initial * Progress * Rename * Routines * Progress * Add e2e tests * Done? * Try updating actions * Consistency * Dep fix * A couple fixes
40 lines
1.2 KiB
TypeScript
40 lines
1.2 KiB
TypeScript
import { nanoid } from "nanoid";
|
|
import { SKALOP_TOKEN_HEADER_NAME } from "~/constants";
|
|
import invariant from "~/utils/invariant";
|
|
import type { ChatMessage } from "./chat-types";
|
|
|
|
type PartialChatMessage = Pick<
|
|
ChatMessage,
|
|
"type" | "context" | "room" | "revalidateOnly"
|
|
>;
|
|
interface ChatSystemMessageService {
|
|
send: (msg: PartialChatMessage | PartialChatMessage[]) => undefined;
|
|
}
|
|
|
|
invariant(
|
|
process.env.SKALOP_SYSTEM_MESSAGE_URL,
|
|
"Missing env var: SKALOP_SYSTEM_MESSAGE_URL",
|
|
);
|
|
invariant(process.env.SKALOP_TOKEN, "Missing env var: SKALOP_TOKEN");
|
|
|
|
export const send: ChatSystemMessageService["send"] = (partialMsg) => {
|
|
const msgArr = Array.isArray(partialMsg) ? partialMsg : [partialMsg];
|
|
|
|
const fullMessages: ChatMessage[] = msgArr.map((partialMsg) => {
|
|
return {
|
|
id: nanoid(),
|
|
timestamp: Date.now(),
|
|
room: partialMsg.room,
|
|
context: partialMsg.context,
|
|
type: partialMsg.type,
|
|
revalidateOnly: partialMsg.revalidateOnly,
|
|
};
|
|
});
|
|
|
|
return void fetch(process.env.SKALOP_SYSTEM_MESSAGE_URL!, {
|
|
method: "POST",
|
|
body: JSON.stringify(fullMessages),
|
|
headers: [[SKALOP_TOKEN_HEADER_NAME, process.env.SKALOP_TOKEN!]],
|
|
}).catch(console.error);
|
|
};
|