2021-03-10 19:34:21 +01:00
|
|
|
// @flow
|
2021-03-19 21:14:31 +01:00
|
|
|
import { BITWAVE_API } from 'constants/livestream';
|
2021-03-10 19:34:21 +01:00
|
|
|
import React from 'react';
|
|
|
|
import Card from 'component/common/card';
|
|
|
|
import ClaimPreview from 'component/claimPreview';
|
|
|
|
import { Lbry } from 'lbry-redux';
|
|
|
|
|
|
|
|
type Props = {
|
|
|
|
channelClaim: ChannelClaim,
|
|
|
|
};
|
|
|
|
|
|
|
|
export default function LivestreamLink(props: Props) {
|
|
|
|
const { channelClaim } = props;
|
|
|
|
const [livestreamClaim, setLivestreamClaim] = React.useState(false);
|
|
|
|
const [isLivestreaming, setIsLivestreaming] = React.useState(false);
|
|
|
|
const livestreamChannelId = channelClaim.claim_id;
|
|
|
|
|
|
|
|
React.useEffect(() => {
|
|
|
|
Lbry.claim_search({
|
|
|
|
channel_ids: [livestreamChannelId],
|
2021-03-17 19:57:27 +01:00
|
|
|
has_no_source: true,
|
2021-03-10 19:34:21 +01:00
|
|
|
claim_type: ['stream'],
|
|
|
|
})
|
|
|
|
.then((res) => {
|
|
|
|
if (res && res.items && res.items.length > 0) {
|
2021-03-22 05:16:39 +01:00
|
|
|
const claim = res.items[res.items.length - 1];
|
2021-03-10 19:34:21 +01:00
|
|
|
setLivestreamClaim(claim);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(() => {});
|
|
|
|
}, [livestreamChannelId]);
|
|
|
|
|
|
|
|
React.useEffect(() => {
|
2021-03-19 21:14:31 +01:00
|
|
|
function fetchIsStreaming() {
|
2021-03-22 05:16:39 +01:00
|
|
|
fetch(`${BITWAVE_API}/${livestreamChannelId}`)
|
2021-03-19 21:14:31 +01:00
|
|
|
.then((res) => res.json())
|
|
|
|
.then((res) => {
|
2021-03-22 06:06:11 +01:00
|
|
|
if (res && res.success && res.data && res.data.live) {
|
2021-03-19 21:14:31 +01:00
|
|
|
setIsLivestreaming(true);
|
|
|
|
} else {
|
|
|
|
setIsLivestreaming(false);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch((e) => {});
|
|
|
|
}
|
|
|
|
let interval;
|
|
|
|
if (livestreamChannelId) {
|
2021-03-22 06:06:11 +01:00
|
|
|
if (!interval) fetchIsStreaming();
|
|
|
|
interval = setInterval(fetchIsStreaming, 15 * 1000);
|
2021-03-19 21:14:31 +01:00
|
|
|
}
|
|
|
|
return () => {
|
|
|
|
if (interval) {
|
|
|
|
clearInterval(interval);
|
|
|
|
}
|
|
|
|
};
|
2021-03-10 19:34:21 +01:00
|
|
|
}, [livestreamChannelId]);
|
|
|
|
|
|
|
|
if (!livestreamClaim || !isLivestreaming) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Card
|
|
|
|
className="livestream__channel-link"
|
|
|
|
title="Live stream in progress"
|
|
|
|
actions={<ClaimPreview uri={livestreamClaim.canonical_url} livestream type="inline" />}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|