2022-04-28 18:54:33 +02:00
|
|
|
import { useRecoilValue } from 'recoil';
|
2022-05-04 09:55:44 +02:00
|
|
|
import { Layout, Tabs } from 'antd';
|
2022-05-03 23:55:13 +02:00
|
|
|
import { chatVisibilityAtom, clientConfigStateAtom } from '../../stores/ClientConfigStore';
|
2022-04-28 18:54:33 +02:00
|
|
|
import { ClientConfig } from '../../../interfaces/client-config.model';
|
2022-04-28 14:36:05 -07:00
|
|
|
import CustomPageContent from '../../CustomPageContent';
|
|
|
|
import OwncastPlayer from '../../video/OwncastPlayer';
|
|
|
|
import FollowerCollection from '../../FollowersCollection';
|
2022-05-03 23:55:13 +02:00
|
|
|
import s from './Content.module.scss';
|
|
|
|
import Sidebar from '../Sidebar';
|
|
|
|
import Footer from '../Footer';
|
2022-05-04 09:55:44 +02:00
|
|
|
import ChatContainer from '../../chat/ChatContainer';
|
|
|
|
import { ChatMessage } from '../../../interfaces/chat-message.model';
|
|
|
|
import { chatMessagesAtom, chatStateAtom } from '../../stores/ClientConfigStore';
|
|
|
|
import { ChatState, ChatVisibilityState } from '../../../interfaces/application-state';
|
|
|
|
import ChatTextField from '../../chat/ChatTextField/ChatTextField';
|
2022-04-28 14:36:05 -07:00
|
|
|
|
|
|
|
const { TabPane } = Tabs;
|
2022-04-28 18:54:33 +02:00
|
|
|
|
|
|
|
const { Content } = Layout;
|
|
|
|
|
|
|
|
export default function FooterComponent() {
|
2022-05-02 17:45:22 -07:00
|
|
|
const clientConfig = useRecoilValue<ClientConfig>(clientConfigStateAtom);
|
2022-05-03 23:55:13 +02:00
|
|
|
const chatOpen = useRecoilValue<ChatVisibilityState>(chatVisibilityAtom);
|
2022-05-04 09:55:44 +02:00
|
|
|
const messages = useRecoilValue<ChatMessage[]>(chatMessagesAtom);
|
|
|
|
const chatState = useRecoilValue<ChatState>(chatStateAtom);
|
|
|
|
|
2022-04-28 18:54:33 +02:00
|
|
|
const { extraPageContent } = clientConfig;
|
|
|
|
|
|
|
|
return (
|
2022-05-04 09:55:44 +02:00
|
|
|
<Content className={`${s.root}`} data-columns={chatOpen ? 2 : 1}>
|
|
|
|
<div className={`${s.leftCol}`}>
|
2022-05-03 23:55:13 +02:00
|
|
|
<OwncastPlayer source="https://watch.owncast.online" />
|
|
|
|
<div className={`${s.lowerRow}`}>
|
|
|
|
<Tabs defaultActiveKey="1" type="card">
|
|
|
|
<TabPane tab="About" key="1">
|
|
|
|
<CustomPageContent content={extraPageContent} />
|
|
|
|
</TabPane>
|
|
|
|
<TabPane tab="Followers" key="2">
|
|
|
|
<FollowerCollection />
|
|
|
|
</TabPane>
|
|
|
|
</Tabs>
|
2022-05-04 09:55:44 +02:00
|
|
|
{chatOpen && (
|
|
|
|
<div className={`${s.mobileChat}`}>
|
|
|
|
<ChatContainer messages={messages} state={chatState} />
|
|
|
|
<ChatTextField />
|
|
|
|
</div>
|
|
|
|
)}
|
2022-05-03 23:55:13 +02:00
|
|
|
<Footer />
|
|
|
|
</div>
|
2022-05-04 09:55:44 +02:00
|
|
|
</div>
|
|
|
|
{chatOpen && <Sidebar />}
|
2022-04-28 18:54:33 +02:00
|
|
|
</Content>
|
|
|
|
);
|
|
|
|
}
|