mirror of
https://github.com/owncast/owncast.git
synced 2024-11-25 06:12:23 +03:00
42 lines
1 KiB
TypeScript
42 lines
1 KiB
TypeScript
import { FC } from 'react';
|
|
import dynamic from 'next/dynamic';
|
|
import { ModerationBadge } from '../ChatUserBadge/ModerationBadge';
|
|
|
|
import styles from './ChatPartMessage.module.scss';
|
|
|
|
// Lazy loaded components
|
|
|
|
const UsergroupDeleteOutlined = dynamic(() => import('@ant-design/icons/UsergroupDeleteOutlined'), {
|
|
ssr: false,
|
|
});
|
|
|
|
export type ChatPartMessageProps = {
|
|
isAuthorModerator: boolean;
|
|
userColor: number;
|
|
displayName: string;
|
|
};
|
|
|
|
export const ChatPartMessage: FC<ChatPartMessageProps> = ({
|
|
isAuthorModerator,
|
|
userColor,
|
|
displayName,
|
|
}) => {
|
|
const color = `var(--theme-color-users-${userColor})`;
|
|
|
|
return (
|
|
<div className={styles.root}>
|
|
<span style={{ color }}>
|
|
<span className={styles.icon}>
|
|
<UsergroupDeleteOutlined />
|
|
</span>
|
|
<span className={styles.user}>{displayName}</span>
|
|
{isAuthorModerator && (
|
|
<span className={styles.moderatorBadge}>
|
|
<ModerationBadge userColor={userColor} />
|
|
</span>
|
|
)}
|
|
</span>
|
|
left the chat.
|
|
</div>
|
|
);
|
|
};
|