mirror of
https://github.com/owncast/owncast.git
synced 2025-01-08 01:27:31 +03:00
76 lines
2.7 KiB
TypeScript
76 lines
2.7 KiB
TypeScript
import { useRecoilValue } from 'recoil';
|
|
import { Layout, Row, Col, Tabs } from 'antd';
|
|
import Grid from 'antd/lib/card/Grid';
|
|
import {
|
|
chatVisibilityAtom,
|
|
clientConfigStateAtom,
|
|
chatMessagesAtom,
|
|
chatStateAtom,
|
|
} from '../../stores/ClientConfigStore';
|
|
import { ClientConfig } from '../../../interfaces/client-config.model';
|
|
import CustomPageContent from '../../CustomPageContent';
|
|
import OwncastPlayer from '../../video/OwncastPlayer';
|
|
import FollowerCollection from '../../FollowersCollection';
|
|
import s from './Content.module.scss';
|
|
import Sidebar from '../Sidebar';
|
|
import Footer from '../Footer';
|
|
import ChatContainer from '../../chat/ChatContainer';
|
|
import { ChatMessage } from '../../../interfaces/chat-message.model';
|
|
import { ChatState, ChatVisibilityState } from '../../../interfaces/application-state';
|
|
import ChatTextField from '../../chat/ChatTextField/ChatTextField';
|
|
import ExternalActionButtonRow from '../../action-buttons/ExternalActionButtonRow';
|
|
|
|
const { TabPane } = Tabs;
|
|
|
|
const { Content } = Layout;
|
|
|
|
export default function FooterComponent() {
|
|
const clientConfig = useRecoilValue<ClientConfig>(clientConfigStateAtom);
|
|
const chatOpen = useRecoilValue<ChatVisibilityState>(chatVisibilityAtom);
|
|
const messages = useRecoilValue<ChatMessage[]>(chatMessagesAtom);
|
|
const chatState = useRecoilValue<ChatState>(chatStateAtom);
|
|
|
|
const { extraPageContent } = clientConfig;
|
|
|
|
const followers: Follower[] = [];
|
|
|
|
const total = 0;
|
|
|
|
return (
|
|
<Content className={`${s.root}`} data-columns={chatOpen ? 2 : 1}>
|
|
<div className={`${s.leftCol}`}>
|
|
<OwncastPlayer source="https://watch.owncast.online" />
|
|
<ExternalActionButtonRow
|
|
actions={[
|
|
{
|
|
url: 'https://owncast.online/docs',
|
|
title: 'Example button',
|
|
description: 'Example button description',
|
|
icon: 'https://owncast.online/images/logo.svg',
|
|
color: '#5232c8',
|
|
openExternally: true,
|
|
},
|
|
]}
|
|
/>
|
|
<div className={`${s.lowerRow}`}>
|
|
<Tabs defaultActiveKey="1" type="card">
|
|
<TabPane tab="About" key="1">
|
|
<CustomPageContent content={extraPageContent} />
|
|
</TabPane>
|
|
<TabPane tab="Followers" key="2">
|
|
<FollowerCollection total={total} followers={followers} />
|
|
</TabPane>
|
|
</Tabs>
|
|
{chatOpen && (
|
|
<div className={`${s.mobileChat}`}>
|
|
<ChatContainer messages={messages} state={chatState} />
|
|
<ChatTextField />
|
|
</div>
|
|
)}
|
|
<Footer />
|
|
</div>
|
|
</div>
|
|
{chatOpen && <Sidebar />}
|
|
</Content>
|
|
);
|
|
}
|