Add read-only chat embed page. Closes #1905

This commit is contained in:
Gabe Kangas
2022-09-04 21:46:54 -07:00
parent ab4feb9bde
commit c61bea29ee
5 changed files with 74 additions and 6 deletions

View File

@@ -1,3 +0,0 @@
export default function ReadOnlyChatEmbed() {
return <div className="chat-embed">chat container goes here</div>;
}

View File

@@ -0,0 +1,29 @@
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>
);
}