Add read-only chat embed page. Closes #1905
This commit is contained in:
@@ -1,3 +0,0 @@
|
||||
export default function ReadOnlyChatEmbed() {
|
||||
return <div className="chat-embed">chat container goes here</div>;
|
||||
}
|
||||
29
web/pages/embed/chat/readonly/index.tsx
Normal file
29
web/pages/embed/chat/readonly/index.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user