96 lines
3 KiB
JavaScript
96 lines
3 KiB
JavaScript
// @flow
|
|
import { LIVESTREAM_EMBED_URL } from 'constants/livestream';
|
|
import React from 'react';
|
|
import FileTitleSection from 'component/fileTitleSection';
|
|
import { useIsMobile } from 'effects/use-screensize';
|
|
import LivestreamScheduledInfo from 'component/livestreamScheduledInfo';
|
|
import classnames from 'classnames';
|
|
import { lazyImport } from 'util/lazyImport';
|
|
import LivestreamLink from 'component/livestreamLink';
|
|
|
|
const LivestreamComments = lazyImport(() => import('component/livestreamComments' /* webpackChunkName: "comments" */));
|
|
|
|
type Props = {
|
|
uri: string,
|
|
claim: ?StreamClaim,
|
|
hideComments: boolean,
|
|
release: any,
|
|
showLivestream: boolean,
|
|
showScheduledInfo: boolean,
|
|
isCurrentClaimLive: boolean,
|
|
activeStreamUri: boolean | string,
|
|
};
|
|
|
|
export default function LivestreamLayout(props: Props) {
|
|
const {
|
|
claim,
|
|
uri,
|
|
hideComments,
|
|
release,
|
|
showLivestream,
|
|
showScheduledInfo,
|
|
isCurrentClaimLive,
|
|
activeStreamUri,
|
|
} = props;
|
|
|
|
const isMobile = useIsMobile();
|
|
|
|
if (!claim || !claim.signing_channel) {
|
|
return null;
|
|
}
|
|
|
|
const channelName = claim.signing_channel.name;
|
|
const channelClaimId = claim.signing_channel.claim_id;
|
|
|
|
return (
|
|
<>
|
|
<div className="section card-stack">
|
|
<div
|
|
className={classnames('file-render file-render--video livestream', {
|
|
'file-render--scheduledLivestream': !showLivestream,
|
|
})}
|
|
>
|
|
<div className="file-viewer">
|
|
{showLivestream && (
|
|
<iframe
|
|
src={`${LIVESTREAM_EMBED_URL}/${channelClaimId}?skin=odysee&autoplay=1`}
|
|
scrolling="no"
|
|
allowFullScreen
|
|
/>
|
|
)}
|
|
{showScheduledInfo && <LivestreamScheduledInfo release={release} />}
|
|
</div>
|
|
</div>
|
|
|
|
{hideComments && !showScheduledInfo && (
|
|
<div className="help--notice">
|
|
{channelName
|
|
? __('%channel% has disabled chat for this stream. Enjoy the stream!', { channel: channelName })
|
|
: __('This channel has disabled chat for this stream. Enjoy the stream!')}
|
|
</div>
|
|
)}
|
|
|
|
{!activeStreamUri && !showScheduledInfo && !isCurrentClaimLive && (
|
|
<div className="help--notice">
|
|
{channelName
|
|
? __("%channelName% isn't live right now, but the chat is! Check back later to watch the stream.", {
|
|
channelName,
|
|
})
|
|
: __("This channel isn't live right now, but the chat is! Check back later to watch the stream.")}
|
|
</div>
|
|
)}
|
|
|
|
{activeStreamUri && (
|
|
<LivestreamLink
|
|
title={__("Click here to access the stream that's currently active")}
|
|
claimUri={activeStreamUri}
|
|
/>
|
|
)}
|
|
|
|
<React.Suspense fallback={null}>{isMobile && !hideComments && <LivestreamComments uri={uri} />}</React.Suspense>
|
|
|
|
<FileTitleSection uri={uri} livestream isLive={showLivestream} />
|
|
</div>
|
|
</>
|
|
);
|
|
}
|