// @flow import * as ICONS from 'constants/icons'; import React from 'react'; import { parseURI } from 'lbry-redux'; import { Lbryio } from 'lbryinc'; import Page from 'component/page'; import SubscribeButton from 'component/subscribeButton'; import BlockButton from 'component/blockButton'; import ShareButton from 'component/shareButton'; import { Tabs, TabList, Tab, TabPanels, TabPanel } from 'component/common/tabs'; import { useHistory } from 'react-router'; import Button from 'component/button'; import { formatLbryUrlForWeb } from 'util/url'; import ChannelContent from 'component/channelContent'; import ChannelAbout from 'component/channelAbout'; import ChannelDiscussion from 'component/channelDiscussion'; import ChannelThumbnail from 'component/channelThumbnail'; import ChannelEdit from 'component/channelEdit'; import ClaimUri from 'component/claimUri'; import classnames from 'classnames'; import Icon from 'component/common/icon'; import HelpLink from 'component/common/help-link'; import DateTime from 'component/dateTime'; import ClaimSupportButton from 'component/claimSupportButton'; const PAGE_VIEW_QUERY = `view`; const ABOUT_PAGE = `about`; const DISCUSSION_PAGE = `discussion`; const EDIT_PAGE = 'edit'; type Props = { uri: string, claim: ChannelClaim, title: ?string, cover: ?string, thumbnail: ?string, page: number, match: { params: { attribute: ?string } }, channelIsMine: boolean, isSubscribed: boolean, channelIsBlocked: boolean, blackListedOutpoints: Array<{ txid: string, nout: number, }>, fetchSubCount: string => void, subCount: number, pending: boolean, }; function ChannelPage(props: Props) { const { uri, claim, title, cover, page, channelIsMine, isSubscribed, channelIsBlocked, blackListedOutpoints, fetchSubCount, subCount, pending, } = props; const { push, goBack, location: { search }, } = useHistory(); const urlParams = new URLSearchParams(search); const currentView = urlParams.get(PAGE_VIEW_QUERY) || undefined; const editInUrl = urlParams.get(PAGE_VIEW_QUERY) === EDIT_PAGE; const [editing, setEditing] = React.useState(editInUrl); const [lastYtSyncDate, setLastYtSyncDate] = React.useState(); const { channelName } = parseURI(uri); const { permanent_url: permanentUrl } = claim; const claimId = claim.claim_id; const formattedSubCount = Number(subCount).toLocaleString(); let channelIsBlackListed = false; if (claim && blackListedOutpoints) { channelIsBlackListed = blackListedOutpoints.some( outpoint => outpoint.txid === claim.txid && outpoint.nout === claim.nout ); } // If a user changes tabs, update the url so it stays on the same page if they refresh. // We don't want to use links here because we can't animate the tab change and using links // would alter the Tab label's role attribute, which should stay role="tab" to work with keyboards/screen readers. const tabIndex = currentView === ABOUT_PAGE || editing ? 1 : currentView === DISCUSSION_PAGE ? 2 : 0; function onTabChange(newTabIndex) { let url = formatLbryUrlForWeb(uri); let search = '?'; if (newTabIndex === 0) { search += `page=${page}`; } else if (newTabIndex === 1) { search += `${PAGE_VIEW_QUERY}=${ABOUT_PAGE}`; } else { search += `${PAGE_VIEW_QUERY}=${DISCUSSION_PAGE}`; } push(`${url}${search}`); } function onDone() { setEditing(false); goBack(); } React.useEffect(() => { if (!channelIsMine && editing) { setEditing(false); } if (channelIsMine && editing) { push(`?${PAGE_VIEW_QUERY}=${EDIT_PAGE}`); } }, [channelIsMine, editing, push]); React.useEffect(() => { if (currentView === EDIT_PAGE) { setEditing(true); } else { setEditing(false); } }, [currentView, setEditing]); React.useEffect(() => { Lbryio.call('yt', 'get_youtuber', { channel_claim_id: claimId }).then(response => { if (response.is_verified_youtuber) { setLastYtSyncDate(response.last_synced); } }); }, [claimId]); React.useEffect(() => { fetchSubCount(claimId); }, [uri, fetchSubCount, claimId]); if (editing) { return ( ); } return ( {lastYtSyncDate && (
{__('Official YouTube Creator - Last updated %time_ago%', { time_ago: DateTime.getTimeAgoStr(lastYtSyncDate), })}
)}
{!channelIsBlocked && !channelIsBlackListed && } {!channelIsBlocked && } {!channelIsBlocked && (!channelIsBlackListed || isSubscribed) && } {!isSubscribed && }
{cover && ( )}

{title || '@' + channelName}

{formattedSubCount} {subCount !== 1 ? __('Followers') : __('Follower')} {channelIsMine && ( <> {pending ? ( {__('Your changes will be live in a few minutes')} ) : (
{__('Content')} {editing ? __('Editing Your Channel') : __('About')} {__('Comments')}
); } export default ChannelPage;