2021-03-10 13:34:21 -05:00
|
|
|
// @flow
|
2021-07-27 16:35:22 -04:00
|
|
|
import { LIVESTREAM_EMBED_URL } from 'constants/livestream';
|
2021-03-10 13:34:21 -05:00
|
|
|
import React from 'react';
|
2021-03-13 19:42:21 -08:00
|
|
|
import FileTitleSection from 'component/fileTitleSection';
|
2021-04-23 15:59:48 -04:00
|
|
|
import { useIsMobile } from 'effects/use-screensize';
|
2021-10-18 23:54:59 +08:00
|
|
|
import { lazyImport } from 'util/lazyImport';
|
|
|
|
|
|
|
|
const LivestreamComments = lazyImport(() => import('component/livestreamComments' /* webpackChunkName: "comments" */));
|
2021-03-10 13:34:21 -05:00
|
|
|
|
|
|
|
type Props = {
|
|
|
|
uri: string,
|
|
|
|
claim: ?StreamClaim,
|
2021-03-18 13:21:49 -04:00
|
|
|
isLive: boolean,
|
2021-06-03 11:55:16 -04:00
|
|
|
chatDisabled: boolean,
|
2021-03-10 13:34:21 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
export default function LivestreamLayout(props: Props) {
|
2021-06-17 14:55:23 -04:00
|
|
|
const { claim, uri, isLive, chatDisabled } = props;
|
2021-04-23 15:59:48 -04:00
|
|
|
const isMobile = useIsMobile();
|
2021-03-10 13:34:21 -05:00
|
|
|
|
2021-03-19 16:14:31 -04:00
|
|
|
if (!claim || !claim.signing_channel) {
|
2021-03-10 13:34:21 -05:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2021-03-19 16:14:31 -04:00
|
|
|
const channelName = claim.signing_channel.name;
|
|
|
|
const channelClaimId = claim.signing_channel.claim_id;
|
2021-03-18 13:21:49 -04:00
|
|
|
|
2021-03-10 13:34:21 -05:00
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<div className="section card-stack">
|
|
|
|
<div className="file-render file-render--video livestream">
|
|
|
|
<div className="file-viewer">
|
2021-03-19 16:14:31 -04:00
|
|
|
<iframe
|
2021-07-27 16:35:22 -04:00
|
|
|
src={`${LIVESTREAM_EMBED_URL}/${channelClaimId}?skin=odysee&autoplay=1`}
|
2021-03-19 16:14:31 -04:00
|
|
|
scrolling="no"
|
|
|
|
allowFullScreen
|
|
|
|
/>
|
2021-03-10 13:34:21 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2021-06-03 11:55:16 -04:00
|
|
|
{Boolean(chatDisabled) && (
|
|
|
|
<div className="help--notice">
|
2021-07-26 22:27:39 +08:00
|
|
|
{channelName
|
2021-09-15 10:08:41 +08:00
|
|
|
? __('%channel% has disabled chat for this stream. Enjoy the stream!', { channel: channelName })
|
2021-07-26 22:27:39 +08:00
|
|
|
: __('This channel has disabled chat for this stream. Enjoy the stream!')}
|
2021-06-03 11:55:16 -04:00
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
|
2021-03-18 13:21:49 -04:00
|
|
|
{!isLive && (
|
|
|
|
<div className="help--notice">
|
2021-07-26 22:27:39 +08:00
|
|
|
{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.")}
|
2021-03-18 13:21:49 -04:00
|
|
|
</div>
|
|
|
|
)}
|
2021-04-23 15:59:48 -04:00
|
|
|
|
2021-10-18 23:54:59 +08:00
|
|
|
<React.Suspense fallback={null}>{isMobile && <LivestreamComments uri={uri} />}</React.Suspense>
|
2021-04-23 15:59:48 -04:00
|
|
|
|
2021-06-17 14:55:23 -04:00
|
|
|
<FileTitleSection uri={uri} livestream isLive={isLive} />
|
2021-03-10 13:34:21 -05:00
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|