import { observer } from "mobx-react-lite"; import { attachContextMenu } from "preact-context-menu"; import { memo } from "preact/compat"; import { useContext, useState } from "preact/hooks"; import { useData } from "../../../mobx/State"; import { QueuedMessage } from "../../../redux/reducers/queue"; import { useIntermediate } from "../../../context/intermediate/Intermediate"; import { AppContext } from "../../../context/revoltjs/RevoltClient"; import { MessageObject } from "../../../context/revoltjs/util"; import Overline from "../../ui/Overline"; import { Children } from "../../../types/Preact"; import Markdown from "../../markdown/Markdown"; import UserIcon from "../user/UserIcon"; import { Username } from "../user/UserShort"; import MessageBase, { MessageContent, MessageDetail, MessageInfo, } from "./MessageBase"; import Attachment from "./attachments/Attachment"; import { MessageReply } from "./attachments/MessageReply"; import Embed from "./embed/Embed"; interface Props { attachContext?: boolean; queued?: QueuedMessage; message: MessageObject; highlight?: boolean; contrast?: boolean; content?: Children; head?: boolean; } const Message = observer( ({ highlight, attachContext, message, contrast, content: replacement, head: preferHead, queued, }: Props) => { const store = useData(); const user = store.users.get(message.author); const client = useContext(AppContext); const { openScreen } = useIntermediate(); const content = message.content as string; const head = preferHead || (message.replies && message.replies.length > 0); // ! FIXME: tell fatal to make this type generic // bree: Fatal please... const userContext = attachContext ? (attachContextMenu("Menu", { user: message.author, contextualChannel: message.channel, }) as any) : undefined; const openProfile = () => openScreen({ id: "profile", user_id: message.author }); // ! FIXME: animate on hover const [animate, setAnimate] = useState(false); return (
{message.replies?.map((message_id, index) => ( ))} 0) } contrast={contrast} sending={typeof queued !== "undefined"} mention={message.mentions?.includes(client.user!._id)} failed={typeof queued?.error !== "undefined"} onContextMenu={ attachContext ? attachContextMenu("Menu", { message, contextualChannel: message.channel, queued, }) : undefined } onMouseEnter={() => setAnimate(true)} onMouseLeave={() => setAnimate(false)}> {head ? ( ) : ( )} {head && ( )} {replacement ?? } {queued?.error && ( )} {message.attachments?.map((attachment, index) => ( 0 || content.length > 0} /> ))} {message.embeds?.map((embed, index) => ( ))}
); }, ); export default memo(Message);