lbry-desktop/ui/component/livestreamLink/view.jsx

73 lines
2.4 KiB
React
Raw Normal View History

// @flow
import * as CS from 'constants/claim_search';
import React from 'react';
import Card from 'component/common/card';
import ClaimPreview from 'component/claimPreview';
import Lbry from 'lbry';
2021-04-23 21:59:48 +02:00
import { useHistory } from 'react-router';
import { formatLbryUrlForWeb } from 'util/url';
import watchLivestreamStatus from '$web/src/livestreaming/long-polling';
type Props = {
channelClaim: ChannelClaim,
};
export default function LivestreamLink(props: Props) {
const { channelClaim } = props;
2021-04-23 21:59:48 +02:00
const { push } = useHistory();
const [livestreamClaim, setLivestreamClaim] = React.useState(false);
const [isLivestreaming, setIsLivestreaming] = React.useState(false);
2021-07-20 03:45:51 +02:00
const livestreamChannelId = (channelClaim && channelClaim.claim_id) || ''; // TODO: fail in a safer way, probably
// TODO: pput this back when hubs claims_in_channel are fixed
const isChannelEmpty = !channelClaim || !channelClaim.meta;
// ||
// !channelClaim.meta.claims_in_channel;
React.useEffect(() => {
// Don't search empty channels
if (livestreamChannelId && !isChannelEmpty) {
2021-03-25 21:26:33 +01:00
Lbry.claim_search({
channel_ids: [livestreamChannelId],
2021-07-23 08:47:01 +02:00
page: 1,
page_size: 1,
2021-07-23 08:47:01 +02:00
no_totals: true,
2021-03-25 21:26:33 +01:00
has_no_source: true,
claim_type: ['stream'],
order_by: CS.ORDER_BY_NEW_VALUE,
})
2021-03-25 21:26:33 +01:00
.then((res) => {
if (res && res.items && res.items.length > 0) {
2021-07-20 03:45:51 +02:00
const claim = res.items[0];
// $FlowFixMe Too many Claim GenericClaim etc types.
2021-03-25 21:26:33 +01:00
setLivestreamClaim(claim);
}
})
.catch(() => {});
}
}, [livestreamChannelId, isChannelEmpty]);
React.useEffect(() => {
if (!livestreamClaim) return;
return watchLivestreamStatus(livestreamChannelId, (state) => setIsLivestreaming(state));
}, [livestreamChannelId, setIsLivestreaming, livestreamClaim]);
if (!livestreamClaim || !isLivestreaming) {
return null;
}
2021-03-30 01:05:18 +02:00
// gonna pass the wrapper in so I don't have to rewrite the dmca/blocking logic in claimPreview.
const element = (props: { children: any }) => (
2021-04-23 21:59:48 +02:00
<Card
className="livestream__channel-link claim-preview__live"
2021-04-23 21:59:48 +02:00
title={__('Live stream in progress')}
onClick={() => {
push(formatLbryUrlForWeb(livestreamClaim.canonical_url));
}}
>
2021-03-30 01:05:18 +02:00
{props.children}
</Card>
);
2021-03-30 01:05:18 +02:00
return <ClaimPreview uri={livestreamClaim.canonical_url} wrapperElement={element} type="inline" />;
}