ad19495702
Naomi comment websockets increase slow mode time to 5 seconds fix to prevent duplicate comments update livestream details fix channel pin electron boom fix rebase prune unused icons updating meme updating meme update livestream for naomi fix rebase DigitalCashNetwork remove electroboom pin Slavguns Joel So he can edit his claims add streamTypes param to claimTilesDiscover so following section can search for all types of content fix typo
38 lines
987 B
JavaScript
38 lines
987 B
JavaScript
// @flow
|
|
import { BITWAVE_USERNAME, BITWAVE_EMBED_URL } from 'constants/livestream';
|
|
import React from 'react';
|
|
import FileTitleSection from 'component/fileTitleSection';
|
|
import LivestreamComments from 'component/livestreamComments';
|
|
|
|
type Props = {
|
|
uri: string,
|
|
claim: ?StreamClaim,
|
|
activeViewers: number,
|
|
};
|
|
|
|
export default function LivestreamFeed(props: Props) {
|
|
const { claim, uri, activeViewers } = props;
|
|
|
|
if (!claim) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<div className="section card-stack">
|
|
<div className="file-render file-render--video livestream">
|
|
<div className="file-viewer">
|
|
<iframe
|
|
src={`${BITWAVE_EMBED_URL}/${BITWAVE_USERNAME}?skin=odysee&autoplay=1`}
|
|
scrolling="no"
|
|
allowFullScreen
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<FileTitleSection uri={uri} livestream activeViewers={activeViewers} />
|
|
</div>
|
|
<LivestreamComments uri={uri} />
|
|
</>
|
|
);
|
|
}
|