You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.4 KiB
49 lines
1.4 KiB
import Sider from 'antd/lib/layout/Sider'; |
|
import { useRecoilValue } from 'recoil'; |
|
import { FC } from 'react'; |
|
import dynamic from 'next/dynamic'; |
|
import { Spin } from 'antd'; |
|
import { ChatMessage } from '../../../interfaces/chat-message.model'; |
|
import styles from './Sidebar.module.scss'; |
|
|
|
import { |
|
currentUserAtom, |
|
visibleChatMessagesSelector, |
|
isChatAvailableSelector, |
|
} from '../../stores/ClientConfigStore'; |
|
|
|
// Lazy loaded components |
|
const ChatContainer = dynamic( |
|
() => import('../../chat/ChatContainer/ChatContainer').then(mod => mod.ChatContainer), |
|
{ |
|
ssr: false, |
|
}, |
|
); |
|
|
|
export const Sidebar: FC = () => { |
|
const currentUser = useRecoilValue(currentUserAtom); |
|
const messages = useRecoilValue<ChatMessage[]>(visibleChatMessagesSelector); |
|
const isChatAvailable = useRecoilValue(isChatAvailableSelector); |
|
|
|
if (!currentUser) { |
|
return ( |
|
<Sider className={styles.root} collapsedWidth={0} width={100}> |
|
<Spin spinning size="large" /> |
|
</Sider> |
|
); |
|
} |
|
|
|
const { id, isModerator, displayName } = currentUser; |
|
return ( |
|
<Sider className={styles.root} collapsedWidth={0} width={320}> |
|
<ChatContainer |
|
messages={messages} |
|
usernameToHighlight={displayName} |
|
chatUserId={id} |
|
isModerator={isModerator} |
|
chatAvailable={isChatAvailable} |
|
showInput={!!currentUser} |
|
/> |
|
</Sider> |
|
); |
|
};
|
|
|