mirror of
https://github.com/owncast/owncast.git
synced 2024-11-26 14:56:14 +03:00
35 lines
1.1 KiB
TypeScript
35 lines
1.1 KiB
TypeScript
// export const ChatSocialMessage: FC<ChatSocialMessageProps> = ({ message }) => {
|
|
|
|
import dynamic from 'next/dynamic';
|
|
import { FC } from 'react';
|
|
import { NameChangeEvent } from '../../../interfaces/socket-events';
|
|
import styles from './ChatNameChangeMessage.module.scss';
|
|
|
|
export interface ChatNameChangeMessageProps {
|
|
message: NameChangeEvent;
|
|
}
|
|
|
|
// Lazy loaded components
|
|
|
|
const EditFilled = dynamic(() => import('@ant-design/icons/EditFilled'), {
|
|
ssr: false,
|
|
});
|
|
|
|
export const ChatNameChangeMessage: FC<ChatNameChangeMessageProps> = ({ message }) => {
|
|
const { oldName, user } = message;
|
|
const { displayName, displayColor } = user;
|
|
const color = `var(--theme-color-users-${displayColor})`;
|
|
|
|
return (
|
|
<div className={styles.nameChangeView}>
|
|
<div style={{ marginRight: 5, height: 'max-content', margin: 'auto 5px auto 0' }}>
|
|
<EditFilled />
|
|
</div>
|
|
<div className={styles.nameChangeText}>
|
|
<span style={{ color }}>{oldName}</span>
|
|
<span className={styles.plain}> is now known as </span>
|
|
<span style={{ color }}>{displayName}</span>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|