Add standalone join message with user badge
This commit is contained in:
27
web/components/chat/ChatJoinMessage/ChatJoinMessage.tsx
Normal file
27
web/components/chat/ChatJoinMessage/ChatJoinMessage.tsx
Normal file
@@ -0,0 +1,27 @@
|
||||
import s from './ChatJoinMessage.module.scss';
|
||||
import ChatUserBadge from '../ChatUserBadge/ChatUserBadge';
|
||||
|
||||
interface Props {
|
||||
isAuthorModerator: boolean;
|
||||
userColor: number;
|
||||
displayName: string;
|
||||
}
|
||||
|
||||
export default function ChatJoinMessage(props: Props) {
|
||||
const { isAuthorModerator, userColor, displayName } = props;
|
||||
const color = `var(--theme-user-colors-${userColor})`;
|
||||
|
||||
return (
|
||||
<div className={s.join}>
|
||||
<span style={{ color }}>
|
||||
{displayName}
|
||||
{isAuthorModerator && (
|
||||
<span>
|
||||
<ChatUserBadge badge="mod" userColor={userColor} />
|
||||
</span>
|
||||
)}
|
||||
</span>{' '}
|
||||
joined the chat.
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user