2022-09-05 07:46:54 +03:00
|
|
|
import { useRecoilValue } from 'recoil';
|
|
|
|
import { ChatMessage } from '../../../../interfaces/chat-message.model';
|
2022-09-07 10:00:28 +03:00
|
|
|
import { ChatContainer } from '../../../../components/chat/ChatContainer/ChatContainer';
|
2022-09-05 07:46:54 +03:00
|
|
|
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>
|
|
|
|
);
|
|
|
|
}
|