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.
65 lines
2.0 KiB
65 lines
2.0 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 { ChatMessage } from '../../../interfaces/chat-message.model'; |
|
import { formatTimestamp } from './messageFmt'; |
|
import s from './ChatUserMessage.module.scss'; |
|
|
|
interface Props { |
|
message: ChatMessage; |
|
showModeratorMenu: boolean; |
|
highlightString: string; |
|
renderAsPersonallySent: boolean; |
|
} |
|
|
|
export default function ChatUserMessage({ |
|
message, |
|
highlightString, |
|
showModeratorMenu, |
|
renderAsPersonallySent, // Move the border to the right and render a background |
|
}: Props) { |
|
const [bgColor, setBgColor] = useState<string>(); |
|
const { body, user, timestamp } = message; |
|
const { displayName, displayColor } = user; |
|
|
|
const color = `var(--theme-user-colors-${displayColor})`; |
|
const formattedTimestamp = `Sent at ${formatTimestamp(timestamp)}`; |
|
const [formattedMessage, setFormattedMessage] = useState<string>(body); |
|
|
|
useEffect(() => { |
|
if (renderAsPersonallySent) setBgColor(getBgColor(displayColor)); |
|
}, []); |
|
|
|
useEffect(() => { |
|
setFormattedMessage(he.decode(body)); |
|
}, [message]); |
|
|
|
return ( |
|
<div |
|
className={cn(s.root, { |
|
[s.ownMessage]: renderAsPersonallySent, |
|
})} |
|
data-display-color={displayColor} |
|
style={{ borderColor: color, backgroundColor: bgColor }} |
|
title={formattedTimestamp} |
|
> |
|
<div className={s.user} style={{ color }}> |
|
{displayName} |
|
</div> |
|
<Highlight search={highlightString}> |
|
<div className={s.message}>{formattedMessage}</div> |
|
</Highlight> |
|
{showModeratorMenu && <div>Moderator menu</div>} |
|
<div className={s.customBorder} style={{ color }} /> |
|
</div> |
|
); |
|
} |
|
|
|
function getBgColor(displayColor: number, alpha = 13) { |
|
const root = document.querySelector(':root'); |
|
const css = getComputedStyle(root); |
|
const hexColor = css.getPropertyValue(`--theme-user-colors-${displayColor}`); |
|
return hexColor.concat(alpha.toString()); |
|
}
|
|
|