2
2
mirror of https://github.com/Thream/website.git synced 2024-07-06 18:40:12 +02:00
website/models/Message.ts

32 lines
796 B
TypeScript

import type { Static } from "@sinclair/typebox"
import { Type } from "@sinclair/typebox"
import { date, id } from "./utils"
import type { MemberWithPublicUser } from "./Member"
export const types = [Type.Literal("text"), Type.Literal("file")]
export const messageSchema = {
id,
value: Type.String({
minLength: 1,
maxLength: 20_000,
}),
type: Type.Union(types, { default: "text" }),
mimetype: Type.String({
maxLength: 127,
default: "text/plain",
format: "mimetype",
}),
createdAt: date.createdAt,
updatedAt: date.updatedAt,
memberId: id,
channelId: id,
}
const messageObjectSchema = Type.Object(messageSchema)
export type Message = Static<typeof messageObjectSchema>
export interface MessageWithMember extends Message {
member: MemberWithPublicUser
}