2021-06-20 12:31:53 -04:00
|
|
|
import { attachContextMenu } from "preact-context-menu";
|
2021-07-05 06:23:23 -04:00
|
|
|
import { memo } from "preact/compat";
|
|
|
|
import { useContext } from "preact/hooks";
|
|
|
|
|
2021-06-22 05:59:06 -04:00
|
|
|
import { QueuedMessage } from "../../../redux/reducers/queue";
|
2021-07-05 06:23:23 -04:00
|
|
|
|
|
|
|
import { useIntermediate } from "../../../context/intermediate/Intermediate";
|
|
|
|
import { AppContext } from "../../../context/revoltjs/RevoltClient";
|
|
|
|
import { useUser } from "../../../context/revoltjs/hooks";
|
2021-06-20 12:31:53 -04:00
|
|
|
import { MessageObject } from "../../../context/revoltjs/util";
|
2021-07-05 06:23:23 -04:00
|
|
|
|
2021-06-22 05:59:06 -04:00
|
|
|
import Overline from "../../ui/Overline";
|
2021-07-05 06:23:23 -04:00
|
|
|
|
|
|
|
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";
|
2021-06-23 13:26:41 -04:00
|
|
|
import { MessageReply } from "./attachments/MessageReply";
|
2021-07-05 06:23:23 -04:00
|
|
|
import Embed from "./embed/Embed";
|
2021-06-20 12:31:53 -04:00
|
|
|
|
|
|
|
interface Props {
|
2021-07-05 06:23:23 -04:00
|
|
|
attachContext?: boolean;
|
|
|
|
queued?: QueuedMessage;
|
|
|
|
message: MessageObject;
|
|
|
|
contrast?: boolean;
|
|
|
|
content?: Children;
|
|
|
|
head?: boolean;
|
2021-06-20 12:31:53 -04:00
|
|
|
}
|
|
|
|
|
2021-07-05 06:23:23 -04:00
|
|
|
function Message({
|
|
|
|
attachContext,
|
|
|
|
message,
|
|
|
|
contrast,
|
|
|
|
content: replacement,
|
|
|
|
head: preferHead,
|
|
|
|
queued,
|
|
|
|
}: Props) {
|
|
|
|
// TODO: Can improve re-renders here by providing a list
|
|
|
|
// TODO: of dependencies. We only need to update on u/avatar.
|
|
|
|
const user = useUser(message.author);
|
|
|
|
const client = useContext(AppContext);
|
|
|
|
const { openScreen } = useIntermediate();
|
2021-06-20 12:31:53 -04:00
|
|
|
|
2021-07-05 06:23:23 -04:00
|
|
|
const content = message.content as string;
|
|
|
|
const head = preferHead || (message.replies && message.replies.length > 0);
|
2021-07-02 08:35:50 -04:00
|
|
|
|
2021-07-05 06:23:23 -04:00
|
|
|
// ! 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;
|
2021-07-04 07:09:39 -04:00
|
|
|
|
2021-07-05 06:23:23 -04:00
|
|
|
const openProfile = () =>
|
|
|
|
openScreen({ id: "profile", user_id: message.author });
|
2021-06-24 11:43:37 -04:00
|
|
|
|
2021-07-05 06:23:23 -04:00
|
|
|
return (
|
|
|
|
<div id={message._id}>
|
|
|
|
{message.replies?.map((message_id, index) => (
|
|
|
|
<MessageReply
|
|
|
|
index={index}
|
|
|
|
id={message_id}
|
|
|
|
channel={message.channel}
|
|
|
|
/>
|
|
|
|
))}
|
|
|
|
<MessageBase
|
|
|
|
head={head && !(message.replies && message.replies.length > 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
|
|
|
|
}>
|
|
|
|
<MessageInfo>
|
|
|
|
{head ? (
|
|
|
|
<UserIcon
|
|
|
|
target={user}
|
|
|
|
size={36}
|
|
|
|
onContextMenu={userContext}
|
|
|
|
onClick={openProfile}
|
|
|
|
/>
|
|
|
|
) : (
|
|
|
|
<MessageDetail message={message} position="left" />
|
|
|
|
)}
|
|
|
|
</MessageInfo>
|
|
|
|
<MessageContent>
|
|
|
|
{head && (
|
|
|
|
<span className="detail">
|
|
|
|
<Username
|
|
|
|
className="author"
|
|
|
|
user={user}
|
|
|
|
onContextMenu={userContext}
|
|
|
|
onClick={openProfile}
|
|
|
|
/>
|
|
|
|
<MessageDetail message={message} position="top" />
|
|
|
|
</span>
|
|
|
|
)}
|
|
|
|
{replacement ?? <Markdown content={content} />}
|
|
|
|
{queued?.error && (
|
|
|
|
<Overline type="error" error={queued.error} />
|
|
|
|
)}
|
|
|
|
{message.attachments?.map((attachment, index) => (
|
|
|
|
<Attachment
|
|
|
|
key={index}
|
|
|
|
attachment={attachment}
|
|
|
|
hasContent={index > 0 || content.length > 0}
|
|
|
|
/>
|
|
|
|
))}
|
|
|
|
{message.embeds?.map((embed, index) => (
|
|
|
|
<Embed key={index} embed={embed} />
|
|
|
|
))}
|
|
|
|
</MessageContent>
|
|
|
|
</MessageBase>
|
|
|
|
</div>
|
|
|
|
);
|
2021-06-20 12:31:53 -04:00
|
|
|
}
|
2021-06-23 11:14:46 -04:00
|
|
|
|
|
|
|
export default memo(Message);
|