mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 13:24:33 +03:00
47 lines
1.6 KiB
TypeScript
47 lines
1.6 KiB
TypeScript
import React from 'react';
|
|
import { useRecoilValue } from 'recoil';
|
|
import {
|
|
clientConfigStateAtom,
|
|
ClientConfigStore,
|
|
isOnlineSelector,
|
|
serverStatusState,
|
|
} from '../../../components/stores/ClientConfigStore';
|
|
import { OfflineBanner } from '../../../components/ui/OfflineBanner/OfflineBanner';
|
|
import { Statusbar } from '../../../components/ui/Statusbar/Statusbar';
|
|
import { OwncastPlayer } from '../../../components/video/OwncastPlayer/OwncastPlayer';
|
|
import { ClientConfig } from '../../../interfaces/client-config.model';
|
|
import { ServerStatus } from '../../../interfaces/server-status.model';
|
|
|
|
export default function VideoEmbed() {
|
|
const status = useRecoilValue<ServerStatus>(serverStatusState);
|
|
const clientConfig = useRecoilValue<ClientConfig>(clientConfigStateAtom);
|
|
|
|
const { name } = clientConfig;
|
|
|
|
const { offlineMessage } = clientConfig;
|
|
const { viewerCount, lastConnectTime, lastDisconnectTime } = status;
|
|
const online = useRecoilValue<boolean>(isOnlineSelector);
|
|
return (
|
|
<>
|
|
<ClientConfigStore />
|
|
<div className="video-embed">
|
|
{online && <OwncastPlayer source="/hls/stream.m3u8" online={online} />}
|
|
{!online && (
|
|
<OfflineBanner
|
|
streamName={name}
|
|
customText={offlineMessage}
|
|
notificationsEnabled={false}
|
|
/>
|
|
)}
|
|
{online && (
|
|
<Statusbar
|
|
online={online}
|
|
lastConnectTime={lastConnectTime}
|
|
lastDisconnectTime={lastDisconnectTime}
|
|
viewerCount={viewerCount}
|
|
/>
|
|
)}
|
|
</div>
|
|
</>
|
|
);
|
|
}
|