038692cafc
Add livestream scheduling feature Also supports back to back streams, and will notify on a non-active stream of an active one.
107 lines
3.4 KiB
JavaScript
107 lines
3.4 KiB
JavaScript
// @flow
|
|
import { ENABLE_NO_SOURCE_CLAIMS } from 'config';
|
|
import React, { useContext } from 'react';
|
|
import UriIndicator from 'component/uriIndicator';
|
|
import DateTime from 'component/dateTime';
|
|
import Button from 'component/button';
|
|
import FileViewCountInline from 'component/fileViewCountInline';
|
|
import { parseURI } from 'util/lbryURI';
|
|
import ClaimListDiscoverContext from 'component/claimListDiscover/context';
|
|
import moment from 'moment';
|
|
|
|
type Props = {
|
|
uri: string,
|
|
claim: ?StreamClaim,
|
|
pending?: boolean,
|
|
type: string,
|
|
beginPublish: (?string) => void,
|
|
isLivestream: boolean,
|
|
fetchSubCount: (string) => void,
|
|
subCount: number,
|
|
isLivestreamActive: boolean,
|
|
};
|
|
|
|
// previews used in channel overview and homepage (and other places?)
|
|
function ClaimPreviewSubtitle(props: Props) {
|
|
const { pending, uri, claim, type, beginPublish, isLivestream, isLivestreamActive, fetchSubCount, subCount } = props;
|
|
const isChannel = claim && claim.value_type === 'channel';
|
|
const claimsInChannel = (claim && claim.meta.claims_in_channel) || 0;
|
|
|
|
const claimId = (claim && claim.claim_id) || '0';
|
|
const formattedSubCount = Number(subCount).toLocaleString();
|
|
|
|
React.useEffect(() => {
|
|
if (isChannel) {
|
|
fetchSubCount(claimId);
|
|
}
|
|
}, [isChannel, fetchSubCount, claimId]);
|
|
|
|
let name;
|
|
try {
|
|
({ streamName: name } = parseURI(uri));
|
|
} catch (e) {}
|
|
|
|
const { listingType } = useContext(ClaimListDiscoverContext) || {};
|
|
|
|
const LivestreamDateTimeLabel = () => {
|
|
// If showing in upcoming and in the past. (we allow x time in past to show here if not live yet)
|
|
if (listingType === 'UPCOMING') {
|
|
// $FlowFixMe
|
|
if (moment.unix(claim.value.release_time).isBefore()) {
|
|
return __('Starting Soon');
|
|
}
|
|
} else {
|
|
// If not in upcoming + live and in the future (started streaming a bit early)
|
|
// $FlowFixMe
|
|
if (isLivestreamActive && moment.unix(claim.value.release_time).isAfter()) {
|
|
return __('Streaming Now');
|
|
}
|
|
}
|
|
return (
|
|
<>
|
|
{__('Livestream')} <DateTime timeAgo uri={uri} />
|
|
</>
|
|
);
|
|
};
|
|
|
|
return (
|
|
<div className="media__subtitle">
|
|
{claim ? (
|
|
<React.Fragment>
|
|
<UriIndicator uri={uri} link />{' '}
|
|
{!pending && claim && (
|
|
<>
|
|
{isChannel && type !== 'inline' && (
|
|
<>
|
|
<span className="claim-preview-metadata-sub-upload">
|
|
{subCount === 1 ? __('1 Follower') : __('%formattedSubCount% Followers', { formattedSubCount })}
|
|
• {claimsInChannel} {claimsInChannel === 1 ? __('upload') : __('uploads')}
|
|
</span>
|
|
</>
|
|
)}
|
|
|
|
{!isChannel &&
|
|
(isLivestream && ENABLE_NO_SOURCE_CLAIMS ? (
|
|
<LivestreamDateTimeLabel />
|
|
) : (
|
|
<>
|
|
<FileViewCountInline uri={uri} isLivestream={isLivestream} />
|
|
<DateTime timeAgo uri={uri} />
|
|
</>
|
|
))}
|
|
</>
|
|
)}
|
|
</React.Fragment>
|
|
) : (
|
|
<React.Fragment>
|
|
<div>{__('Upload something and claim this spot!')}</div>
|
|
<div className="card__actions">
|
|
<Button onClick={() => beginPublish(name)} button="primary" label={__('Publish to %uri%', { uri })} />
|
|
</div>
|
|
</React.Fragment>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default ClaimPreviewSubtitle;
|