2021-03-10 19:34:21 +01:00
|
|
|
// @flow
|
2021-03-18 18:21:49 +01:00
|
|
|
import { BITWAVE_EMBED_URL } from 'constants/livestream';
|
2021-03-10 19:34:21 +01:00
|
|
|
import React from 'react';
|
2021-03-14 04:42:21 +01:00
|
|
|
import FileTitleSection from 'component/fileTitleSection';
|
2021-03-10 19:34:21 +01:00
|
|
|
import LivestreamComments from 'component/livestreamComments';
|
2021-04-23 21:59:48 +02:00
|
|
|
import { useIsMobile } from 'effects/use-screensize';
|
2021-03-10 19:34:21 +01:00
|
|
|
|
|
|
|
type Props = {
|
|
|
|
uri: string,
|
|
|
|
claim: ?StreamClaim,
|
2021-03-18 18:21:49 +01:00
|
|
|
isLive: boolean,
|
2021-03-10 19:34:21 +01:00
|
|
|
activeViewers: number,
|
|
|
|
};
|
|
|
|
|
|
|
|
export default function LivestreamLayout(props: Props) {
|
2021-03-18 18:21:49 +01:00
|
|
|
const { claim, uri, isLive, activeViewers } = props;
|
2021-04-23 21:59:48 +02:00
|
|
|
const isMobile = useIsMobile();
|
2021-03-10 19:34:21 +01:00
|
|
|
|
2021-03-19 21:14:31 +01:00
|
|
|
if (!claim || !claim.signing_channel) {
|
2021-03-10 19:34:21 +01:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2021-03-19 21:14:31 +01:00
|
|
|
const channelName = claim.signing_channel.name;
|
|
|
|
const channelClaimId = claim.signing_channel.claim_id;
|
2021-03-18 18:21:49 +01:00
|
|
|
|
2021-03-10 19:34:21 +01:00
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<div className="section card-stack">
|
|
|
|
<div className="file-render file-render--video livestream">
|
|
|
|
<div className="file-viewer">
|
2021-03-19 21:14:31 +01:00
|
|
|
<iframe
|
|
|
|
src={`${BITWAVE_EMBED_URL}/${channelClaimId}?skin=odysee&autoplay=1`}
|
|
|
|
scrolling="no"
|
|
|
|
allowFullScreen
|
|
|
|
/>
|
2021-03-10 19:34:21 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2021-03-18 18:21:49 +01:00
|
|
|
{!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>
|
|
|
|
)}
|
2021-04-23 21:59:48 +02:00
|
|
|
|
|
|
|
{isMobile && <LivestreamComments uri={uri} />}
|
|
|
|
|
2021-04-14 17:40:36 +02:00
|
|
|
<FileTitleSection uri={uri} livestream isLive={isLive} activeViewers={activeViewers} />
|
2021-03-10 19:34:21 +01:00
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|