You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
98 lines
3.2 KiB
98 lines
3.2 KiB
/* eslint-disable react/no-danger */ |
|
import { useEffect, useState } from 'react'; |
|
import { Highlight } from 'react-highlighter-ts'; |
|
import he from 'he'; |
|
import cn from 'classnames'; |
|
import { Tooltip } from 'antd'; |
|
import { LinkOutlined } from '@ant-design/icons'; |
|
import { useRecoilValue } from 'recoil'; |
|
import s from './ChatUserMessage.module.scss'; |
|
import { formatTimestamp } from './messageFmt'; |
|
import { ChatMessage } from '../../../interfaces/chat-message.model'; |
|
import ChatModerationActionMenu from '../ChatModerationActionMenu/ChatModerationActionMenu'; |
|
import ChatUserBadge from '../ChatUserBadge/ChatUserBadge'; |
|
import { accessTokenAtom } from '../../stores/ClientConfigStore'; |
|
|
|
interface Props { |
|
message: ChatMessage; |
|
showModeratorMenu: boolean; |
|
highlightString: string; |
|
sentBySelf: boolean; |
|
sameUserAsLast: boolean; |
|
isAuthorModerator: boolean; |
|
isAuthorAuthenticated: boolean; |
|
} |
|
|
|
export default function ChatUserMessage({ |
|
message, |
|
highlightString, |
|
showModeratorMenu, |
|
sentBySelf, // Move the border to the right and render a background |
|
sameUserAsLast, |
|
isAuthorModerator, |
|
isAuthorAuthenticated, |
|
}: Props) { |
|
const { id: messageId, body, user, timestamp } = message; |
|
const { id: userId, displayName, displayColor } = user; |
|
const accessToken = useRecoilValue<string>(accessTokenAtom); |
|
|
|
const color = `var(--theme-color-users-${displayColor})`; |
|
const formattedTimestamp = `Sent ${formatTimestamp(timestamp)}`; |
|
const [formattedMessage, setFormattedMessage] = useState<string>(body); |
|
|
|
const badgeNodes = []; |
|
if (isAuthorModerator) { |
|
badgeNodes.push(<ChatUserBadge key="mod" badge="mod" userColor={displayColor} />); |
|
} |
|
if (isAuthorAuthenticated) { |
|
badgeNodes.push( |
|
<ChatUserBadge |
|
key="auth" |
|
badge={<LinkOutlined title="authenticated" />} |
|
userColor={displayColor} |
|
/>, |
|
); |
|
} |
|
|
|
useEffect(() => { |
|
setFormattedMessage(he.decode(body)); |
|
}, [message]); |
|
|
|
return ( |
|
<div className={cn(s.messagePadding, sameUserAsLast && s.messagePaddingCollapsed)}> |
|
<div |
|
className={cn(s.root, { |
|
[s.ownMessage]: sentBySelf, |
|
})} |
|
style={{ borderColor: color }} |
|
> |
|
{!sameUserAsLast && ( |
|
<Tooltip title="user info goes here" placement="topLeft" mouseEnterDelay={1}> |
|
<div className={s.user} style={{ color }}> |
|
<span className={s.userName}>{displayName}</span> |
|
<span>{badgeNodes}</span> |
|
</div> |
|
</Tooltip> |
|
)} |
|
<Tooltip title={formattedTimestamp} mouseEnterDelay={1}> |
|
<Highlight search={highlightString}> |
|
<div className={s.message} dangerouslySetInnerHTML={{ __html: formattedMessage }} /> |
|
</Highlight> |
|
</Tooltip> |
|
|
|
{showModeratorMenu && ( |
|
<div className={s.modMenuWrapper}> |
|
<ChatModerationActionMenu |
|
messageID={messageId} |
|
accessToken={accessToken} |
|
userID={userId} |
|
userDisplayName={displayName} |
|
/> |
|
</div> |
|
)} |
|
<div className={s.customBorder} style={{ color }} /> |
|
<div className={s.background} style={{ color }} /> |
|
</div> |
|
</div> |
|
); |
|
}
|
|
|