53 lines
1.5 KiB
JavaScript
53 lines
1.5 KiB
JavaScript
// @flow
|
|
import { BITWAVE_EMBED_URL } from 'constants/livestream';
|
|
import React from 'react';
|
|
import FileTitleSection from 'component/fileTitleSection';
|
|
import LivestreamComments from 'component/livestreamComments';
|
|
import FileThumbnail from 'component/fileThumbnail';
|
|
|
|
type Props = {
|
|
uri: string,
|
|
claim: ?StreamClaim,
|
|
isLive: boolean,
|
|
activeViewers: number,
|
|
};
|
|
|
|
export default function LivestreamLayout(props: Props) {
|
|
const { claim, uri, isLive, activeViewers } = props;
|
|
|
|
if (!claim) {
|
|
return null;
|
|
}
|
|
|
|
const channelName = claim.signing_channel && claim.signing_channel.name;
|
|
|
|
return (
|
|
<>
|
|
<div className="section card-stack">
|
|
<div className="file-render file-render--video livestream">
|
|
<div className="file-viewer">
|
|
{isLive ? (
|
|
<iframe
|
|
src={`${BITWAVE_EMBED_URL}/${'doomtube'}?skin=odysee&autoplay=1`}
|
|
scrolling="no"
|
|
allowFullScreen
|
|
/>
|
|
) : (
|
|
<FileThumbnail uri={uri} />
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
{!isLive && (
|
|
<div className="help--notice">
|
|
{__("%channel% isn't live right now, but the chat is! Check back later to watch the stream.", {
|
|
channel: channelName || __('This channel'),
|
|
})}
|
|
</div>
|
|
)}
|
|
<FileTitleSection uri={uri} livestream activeViewers={activeViewers} />
|
|
</div>
|
|
<LivestreamComments uri={uri} />
|
|
</>
|
|
);
|
|
}
|