// @flow import * as PAGES from 'constants/pages'; import * as ICONS from 'constants/icons'; import * as PUBLISH_MODES from 'constants/publish_types'; import I18nMessage from 'component/i18nMessage'; import React from 'react'; import Page from 'component/page'; import Spinner from 'component/spinner'; import Button from 'component/button'; import ChannelSelector from 'component/channelSelector'; import Yrbl from 'component/yrbl'; import { Lbry } from 'lbry-redux'; import { toHex } from 'util/hex'; import { FormField } from 'component/common/form'; import CopyableText from 'component/copyableText'; import Card from 'component/common/card'; import ClaimList from 'component/claimList'; import usePersistedState from 'effects/use-persisted-state'; import usePrevious from 'effects/use-previous'; type Props = { channels: Array, fetchingChannels: boolean, activeChannelClaim: ?ChannelClaim, pendingClaims: Array, doNewLivestream: (string) => void, }; export default function LivestreamSetupPage(props: Props) { const LIVESTREAM_CLAIM_POLL_IN_MS = 60000; const { channels, fetchingChannels, activeChannelClaim, pendingClaims, doNewLivestream } = props; const [sigData, setSigData] = React.useState({ signature: undefined, signing_ts: undefined }); const [showHelpTest, setShowHelpTest] = usePersistedState('livestream-help-seen', true); const [spin, setSpin] = React.useState(true); const [livestreamClaims, setLivestreamClaims] = React.useState([]); const hasChannels = channels && channels.length > 0; const activeChannelClaimStr = JSON.stringify(activeChannelClaim); function createStreamKey() { if (!activeChannelClaim || !sigData.signature || !sigData.signing_ts) return null; return `${activeChannelClaim.claim_id}?d=${toHex(activeChannelClaim.name)}&s=${sigData.signature}&t=${ sigData.signing_ts }`; } const streamKey = createStreamKey(); const pendingLiveStreamClaims = pendingClaims ? pendingClaims.filter( (claim) => // $FlowFixMe claim.value_type === 'stream' && !(claim.value && claim.value.source) ) : []; const [localPending, setLocalPending] = React.useState([]); // const localPendingStr = JSON.stringify(localPending); const pendingLivestreamClaimsStr = JSON.stringify(pendingLiveStreamClaims); const prevPendingLiveStreamClaimStr = usePrevious(pendingLivestreamClaimsStr); const liveStreamClaimsStr = JSON.stringify(livestreamClaims); const prevLiveStreamClaimsStr = JSON.stringify(liveStreamClaimsStr); const pendingLength = pendingLiveStreamClaims.length; const totalLivestreamClaims = pendingLiveStreamClaims.concat(livestreamClaims); const activeChannelId = activeChannelClaim && activeChannelClaim.claim_id; const localPendingForChannel = localPending.filter( (claim) => claim.signing_channel && claim.signing_channel.claim_id === activeChannelId ); const helpText = (

{__( `Create a Livestream by first submitting your livestream details and waiting for approval confirmation. This can be done well in advance and will take a few minutes.` )}{' '} {__( `The livestream will not be visible on your channel page until you are live, but you can share the URL in advance.` )}{' '} {__( `Once the your livestream is confirmed, configure your streaming software (OBS, Restream, etc) and input the server URL along with the stream key in it.` )}

{__(`To ensure the best streaming experience with OBS, open settings -> output`)}

{__(`Select advanced mode from the dropdown at the top.`)}

{__(`Ensure the following settings are selected under the streaming tab:`)}

  • {__(`Bitrate: 1000 to 2500 kbps`)}
  • {__(`Keyframes: 1`)}
  • {__(`Profile: High`)}
  • {__(`Tune: Zerolatency`)}

{__(`If using other streaming software, make sure the bitrate is below 4500 kbps or the stream will not work.`)}

{__(`After your stream: Click the Update button on the content page. This will allow you to select a replay or upload your own edited MP4. Replays are limited to 4 hours and may take a few minutes to show (use the Check For Replays button).`)}

{__(`Click Save, then confirm, and you are done!`)}

{__( `Note: If you don't plan on publishing your replay, you'll want to delete your livestream and then start with a fresh one next time.` )}

); React.useEffect(() => { if (activeChannelClaimStr) { const channelClaim = JSON.parse(activeChannelClaimStr); // ensure we have a channel if (channelClaim.claim_id) { Lbry.channel_sign({ channel_id: channelClaim.claim_id, hexdata: toHex(channelClaim.name), }) .then((data) => { setSigData(data); }) .catch((error) => { setSigData({ signature: null, signing_ts: null }); }); } } }, [activeChannelClaimStr, setSigData]); // The following 2 effects handle the time between pending disappearing and claim_search being able to find it. // We'll maintain our own pending list: // add to it when there are new things in pending // remove items only when our claim_search finds it React.useEffect(() => { // add to localPending when pending changes const localPending = JSON.parse(localPendingStr); const pendingLivestreamClaims = JSON.parse(pendingLivestreamClaimsStr); if ( pendingLiveStreamClaims !== prevPendingLiveStreamClaimStr || (pendingLivestreamClaims.length && !localPending.length) ) { const prevPendingLivestreamClaims = prevPendingLiveStreamClaimStr ? JSON.parse(prevPendingLiveStreamClaimStr) : []; const pendingClaimIds = pendingLivestreamClaims.map((claim) => claim.claim_id); const prevPendingClaimIds = prevPendingLivestreamClaims.map((claim) => claim.claim_id); const newLocalPending = []; if (pendingClaimIds.length > prevPendingClaimIds.length) { pendingLivestreamClaims.forEach((pendingClaim) => { if (!localPending.some((lClaim) => lClaim.claim_id === pendingClaim.claim_id)) { newLocalPending.push(pendingClaim); } }); setLocalPending(localPending.concat(newLocalPending)); } } }, [pendingLivestreamClaimsStr, prevPendingLiveStreamClaimStr, localPendingStr, setLocalPending]); React.useEffect(() => { // remove from localPending when livestreamClaims found const localPending = JSON.parse(localPendingStr); if (liveStreamClaimsStr !== prevLiveStreamClaimsStr && localPending.length) { const livestreamClaims = JSON.parse(liveStreamClaimsStr); setLocalPending( localPending.filter((pending) => !livestreamClaims.some((claim) => claim.claim_id === pending.claim_id)) ); } }, [liveStreamClaimsStr, prevLiveStreamClaimsStr, localPendingStr, setLocalPending]); const checkLivestreams = React.useCallback( function checkLivestreamClaims(channelClaimId, setLivestreamClaims, setSpin) { Lbry.claim_search({ channel_ids: [channelClaimId], has_no_source: true, claim_type: ['stream'], include_purchase_receipt: true, }) .then((res) => { if (res && res.items && res.items.length > 0) { setLivestreamClaims(res.items.reverse()); } else { setLivestreamClaims([]); } setSpin(false); }) .catch(() => { setLivestreamClaims([]); setSpin(false); }); }, [activeChannelId] ); React.useEffect(() => { let checkClaimsInterval; if (!activeChannelClaimStr) return; const channelClaim = JSON.parse(activeChannelClaimStr); if (!checkClaimsInterval) { checkLivestreams(channelClaim.claim_id, setLivestreamClaims, setSpin); checkClaimsInterval = setInterval( () => checkLivestreams(channelClaim.claim_id, setLivestreamClaims, setSpin), LIVESTREAM_CLAIM_POLL_IN_MS ); } return () => { if (checkClaimsInterval) { clearInterval(checkClaimsInterval); } }; }, [activeChannelClaimStr, pendingLength, setSpin, checkLivestreams]); return ( {(fetchingChannels || spin) && (
)} {!fetchingChannels && !hasChannels && (