mirror of
https://github.com/owncast/owncast.git
synced 2024-12-22 01:04:45 +03:00
30 lines
898 B
TypeScript
30 lines
898 B
TypeScript
|
import { useRecoilValue } from 'recoil';
|
||
|
import { ChatMessage } from '../../../../interfaces/chat-message.model';
|
||
|
import ChatContainer from '../../../../components/chat/ChatContainer/ChatContainer';
|
||
|
import {
|
||
|
ClientConfigStore,
|
||
|
chatDisplayNameAtom,
|
||
|
chatUserIdAtom,
|
||
|
visibleChatMessagesSelector,
|
||
|
} from '../../../../components/stores/ClientConfigStore';
|
||
|
|
||
|
export default function ReadOnlyChatEmbed() {
|
||
|
const chatDisplayName = useRecoilValue<string>(chatDisplayNameAtom);
|
||
|
const chatUserId = useRecoilValue<string>(chatUserIdAtom);
|
||
|
const messages = useRecoilValue<ChatMessage[]>(visibleChatMessagesSelector);
|
||
|
|
||
|
return (
|
||
|
<div>
|
||
|
<ClientConfigStore />
|
||
|
<ChatContainer
|
||
|
messages={messages}
|
||
|
usernameToHighlight={chatDisplayName}
|
||
|
chatUserId={chatUserId}
|
||
|
isModerator={false}
|
||
|
showInput={false}
|
||
|
height="100vh"
|
||
|
/>
|
||
|
</div>
|
||
|
);
|
||
|
}
|