ef0329e03b
## Issue ~300KB savings in `ui.js` size (production, uncompressed). Mostly coming from the emoji library. ## Notes Most of the `Comment*` components are under `CommentsList` or `LivestreamComments`, so deferring these 2 covered most of it. The exceptions are Notification and OwnComments.
65 lines
2.1 KiB
JavaScript
65 lines
2.1 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 { lazyImport } from 'util/lazyImport';
|
|
|
|
const LivestreamComments = lazyImport(() => import('component/livestreamComments' /* webpackChunkName: "comments" */));
|
|
|
|
type Props = {
|
|
uri: string,
|
|
claim: ?StreamClaim,
|
|
isLive: boolean,
|
|
chatDisabled: boolean,
|
|
};
|
|
|
|
export default function LivestreamLayout(props: Props) {
|
|
const { claim, uri, isLive, chatDisabled } = 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="file-render file-render--video livestream">
|
|
<div className="file-viewer">
|
|
<iframe
|
|
src={`${LIVESTREAM_EMBED_URL}/${channelClaimId}?skin=odysee&autoplay=1`}
|
|
scrolling="no"
|
|
allowFullScreen
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
{Boolean(chatDisabled) && (
|
|
<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>
|
|
)}
|
|
|
|
{!isLive && (
|
|
<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>
|
|
)}
|
|
|
|
<React.Suspense fallback={null}>{isMobile && <LivestreamComments uri={uri} />}</React.Suspense>
|
|
|
|
<FileTitleSection uri={uri} livestream isLive={isLive} />
|
|
</div>
|
|
</>
|
|
);
|
|
}
|