mirror of
https://github.com/owncast/owncast.git
synced 2024-12-19 07:44:26 +03:00
29 lines
864 B
TypeScript
29 lines
864 B
TypeScript
import { useRecoilValue } from 'recoil';
|
|
import { ChatMessage } from '../../../../interfaces/chat-message.model';
|
|
import { ChatContainer } from '../../../../components/chat/ChatContainer/ChatContainer';
|
|
import {
|
|
ClientConfigStore,
|
|
currentUserAtom,
|
|
visibleChatMessagesSelector,
|
|
} from '../../../../components/stores/ClientConfigStore';
|
|
|
|
export default function ReadOnlyChatEmbed() {
|
|
const currentUser = useRecoilValue(currentUserAtom);
|
|
const messages = useRecoilValue<ChatMessage[]>(visibleChatMessagesSelector);
|
|
|
|
return (
|
|
<div>
|
|
<ClientConfigStore />
|
|
{currentUser && (
|
|
<ChatContainer
|
|
messages={messages}
|
|
usernameToHighlight={currentUser.displayName}
|
|
chatUserId={currentUser.id}
|
|
isModerator={false}
|
|
showInput={false}
|
|
height="100vh"
|
|
/>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|