2018-03-26 23:32:43 +02:00
|
|
|
// @flow
|
2020-02-12 20:10:35 +01:00
|
|
|
import * as ICONS from 'constants/icons';
|
2020-06-30 07:51:15 +02:00
|
|
|
import React from 'react';
|
2019-05-07 04:35:04 +02:00
|
|
|
import { parseURI } from 'lbry-redux';
|
2018-03-26 23:32:43 +02:00
|
|
|
import Page from 'component/page';
|
2019-05-07 04:35:04 +02:00
|
|
|
import SubscribeButton from 'component/subscribeButton';
|
2019-07-08 22:54:58 +02:00
|
|
|
import BlockButton from 'component/blockButton';
|
2019-05-07 04:35:04 +02:00
|
|
|
import ShareButton from 'component/shareButton';
|
|
|
|
import { Tabs, TabList, Tab, TabPanels, TabPanel } from 'component/common/tabs';
|
2020-06-30 07:51:15 +02:00
|
|
|
import { useHistory } from 'react-router';
|
2019-06-28 19:00:29 +02:00
|
|
|
import Button from 'component/button';
|
2019-12-02 18:30:08 +01:00
|
|
|
import { formatLbryUrlForWeb } from 'util/url';
|
2019-05-07 04:35:04 +02:00
|
|
|
import ChannelContent from 'component/channelContent';
|
|
|
|
import ChannelAbout from 'component/channelAbout';
|
2019-10-15 00:21:40 +02:00
|
|
|
import ChannelDiscussion from 'component/channelDiscussion';
|
2019-05-07 04:35:04 +02:00
|
|
|
import ChannelThumbnail from 'component/channelThumbnail';
|
2019-07-02 19:54:42 +02:00
|
|
|
import ChannelEdit from 'component/channelEdit';
|
2019-07-08 20:58:33 +02:00
|
|
|
import ClaimUri from 'component/claimUri';
|
2019-08-02 02:56:25 +02:00
|
|
|
import classnames from 'classnames';
|
2019-10-03 23:40:54 +02:00
|
|
|
import HelpLink from 'component/common/help-link';
|
2020-06-08 20:42:29 +02:00
|
|
|
import ClaimSupportButton from 'component/claimSupportButton';
|
2020-07-13 14:57:03 +02:00
|
|
|
import YoutubeBadge from 'component/youtubeBadge';
|
2019-05-07 04:35:04 +02:00
|
|
|
|
|
|
|
const PAGE_VIEW_QUERY = `view`;
|
|
|
|
const ABOUT_PAGE = `about`;
|
2019-10-15 00:21:40 +02:00
|
|
|
const DISCUSSION_PAGE = `discussion`;
|
2020-06-30 07:51:15 +02:00
|
|
|
const EDIT_PAGE = 'edit';
|
2017-05-04 05:44:08 +02:00
|
|
|
|
2018-03-26 23:32:43 +02:00
|
|
|
type Props = {
|
|
|
|
uri: string,
|
2019-07-17 22:49:06 +02:00
|
|
|
claim: ChannelClaim,
|
2019-05-07 04:35:04 +02:00
|
|
|
title: ?string,
|
|
|
|
cover: ?string,
|
|
|
|
thumbnail: ?string,
|
2019-05-14 07:12:24 +02:00
|
|
|
page: number,
|
2019-05-07 04:35:04 +02:00
|
|
|
match: { params: { attribute: ?string } },
|
2019-06-28 19:00:29 +02:00
|
|
|
channelIsMine: boolean,
|
2019-07-08 22:54:58 +02:00
|
|
|
isSubscribed: boolean,
|
|
|
|
channelIsBlocked: boolean,
|
2019-08-29 03:39:21 +02:00
|
|
|
blackListedOutpoints: Array<{
|
|
|
|
txid: string,
|
|
|
|
nout: number,
|
|
|
|
}>,
|
2019-09-25 05:42:51 +02:00
|
|
|
fetchSubCount: string => void,
|
|
|
|
subCount: number,
|
2020-06-21 18:51:06 +02:00
|
|
|
pending: boolean,
|
2018-03-26 23:32:43 +02:00
|
|
|
};
|
|
|
|
|
2019-03-28 17:53:13 +01:00
|
|
|
function ChannelPage(props: Props) {
|
2019-07-08 22:54:58 +02:00
|
|
|
const {
|
|
|
|
uri,
|
2020-06-29 21:54:07 +02:00
|
|
|
claim,
|
2019-07-08 22:54:58 +02:00
|
|
|
title,
|
|
|
|
cover,
|
|
|
|
page,
|
|
|
|
channelIsMine,
|
|
|
|
isSubscribed,
|
|
|
|
channelIsBlocked,
|
2019-08-29 03:39:21 +02:00
|
|
|
blackListedOutpoints,
|
2019-09-25 05:42:51 +02:00
|
|
|
fetchSubCount,
|
|
|
|
subCount,
|
2020-06-21 18:51:06 +02:00
|
|
|
pending,
|
2019-07-08 22:54:58 +02:00
|
|
|
} = props;
|
2020-06-30 07:51:15 +02:00
|
|
|
const {
|
|
|
|
push,
|
|
|
|
goBack,
|
|
|
|
location: { search },
|
|
|
|
} = useHistory();
|
2019-03-28 17:53:13 +01:00
|
|
|
const urlParams = new URLSearchParams(search);
|
2019-05-07 04:35:04 +02:00
|
|
|
const currentView = urlParams.get(PAGE_VIEW_QUERY) || undefined;
|
2020-06-30 07:51:15 +02:00
|
|
|
const editInUrl = urlParams.get(PAGE_VIEW_QUERY) === EDIT_PAGE;
|
|
|
|
const [editing, setEditing] = React.useState(editInUrl);
|
2020-07-24 13:35:22 +02:00
|
|
|
const [discussionWasMounted, setDiscussionWasMounted] = React.useState(false);
|
2020-06-30 07:51:15 +02:00
|
|
|
const { channelName } = parseURI(uri);
|
2019-07-17 22:49:06 +02:00
|
|
|
const { permanent_url: permanentUrl } = claim;
|
2019-09-27 05:52:04 +02:00
|
|
|
const claimId = claim.claim_id;
|
2020-05-25 18:19:15 +02:00
|
|
|
const formattedSubCount = Number(subCount).toLocaleString();
|
2020-06-30 07:51:15 +02:00
|
|
|
let channelIsBlackListed = false;
|
|
|
|
|
|
|
|
if (claim && blackListedOutpoints) {
|
|
|
|
channelIsBlackListed = blackListedOutpoints.some(
|
|
|
|
outpoint => outpoint.txid === claim.txid && outpoint.nout === claim.nout
|
|
|
|
);
|
|
|
|
}
|
2019-06-28 19:00:29 +02:00
|
|
|
|
2019-05-07 04:35:04 +02:00
|
|
|
// 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.
|
2019-10-15 00:21:40 +02:00
|
|
|
const tabIndex = currentView === ABOUT_PAGE || editing ? 1 : currentView === DISCUSSION_PAGE ? 2 : 0;
|
|
|
|
|
2019-09-16 07:32:02 +02:00
|
|
|
function onTabChange(newTabIndex) {
|
2019-12-02 18:30:08 +01:00
|
|
|
let url = formatLbryUrlForWeb(uri);
|
2019-05-14 07:12:24 +02:00
|
|
|
let search = '?';
|
2019-10-15 00:21:40 +02:00
|
|
|
|
|
|
|
if (newTabIndex === 0) {
|
2019-05-14 07:12:24 +02:00
|
|
|
search += `page=${page}`;
|
2019-10-15 00:21:40 +02:00
|
|
|
} else if (newTabIndex === 1) {
|
|
|
|
search += `${PAGE_VIEW_QUERY}=${ABOUT_PAGE}`;
|
|
|
|
} else {
|
|
|
|
search += `${PAGE_VIEW_QUERY}=${DISCUSSION_PAGE}`;
|
2017-08-24 23:12:23 +02:00
|
|
|
}
|
2020-06-30 07:51:15 +02:00
|
|
|
|
|
|
|
push(`${url}${search}`);
|
2019-09-16 07:32:02 +02:00
|
|
|
}
|
|
|
|
|
2020-06-29 21:54:07 +02:00
|
|
|
function onDone() {
|
2020-06-21 18:51:06 +02:00
|
|
|
setEditing(false);
|
2020-06-30 07:51:15 +02:00
|
|
|
goBack();
|
2020-06-21 18:51:06 +02:00
|
|
|
}
|
|
|
|
|
2020-07-24 13:35:22 +02:00
|
|
|
React.useEffect(() => {
|
|
|
|
if (currentView === DISCUSSION_PAGE) {
|
|
|
|
setDiscussionWasMounted(true);
|
|
|
|
}
|
|
|
|
}, [currentView]);
|
|
|
|
|
2020-06-30 07:51:15 +02:00
|
|
|
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]);
|
|
|
|
|
2019-09-23 15:57:03 +02:00
|
|
|
React.useEffect(() => {
|
2019-09-27 05:52:04 +02:00
|
|
|
fetchSubCount(claimId);
|
|
|
|
}, [uri, fetchSubCount, claimId]);
|
2019-09-23 15:57:03 +02:00
|
|
|
|
2020-06-29 21:54:07 +02:00
|
|
|
if (editing) {
|
|
|
|
return (
|
|
|
|
<Page
|
|
|
|
noFooter
|
|
|
|
noSideNavigation={editing}
|
2020-06-30 07:51:15 +02:00
|
|
|
backout={{
|
|
|
|
backFunction: onDone,
|
|
|
|
title: __('Editing @%channel%', { channel: channelName }),
|
|
|
|
simpleTitle: __('Editing'),
|
|
|
|
}}
|
2020-06-29 21:54:07 +02:00
|
|
|
>
|
|
|
|
<ChannelEdit uri={uri} onDone={onDone} />
|
|
|
|
</Page>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-03-28 17:53:13 +01:00
|
|
|
return (
|
2020-05-15 16:19:37 +02:00
|
|
|
<Page noFooter>
|
2020-01-02 23:30:58 +01:00
|
|
|
<ClaimUri uri={uri} />
|
2020-07-13 14:57:03 +02:00
|
|
|
<YoutubeBadge channelClaimId={claimId} />
|
2020-01-03 17:36:15 +01:00
|
|
|
<header className="channel-cover">
|
|
|
|
<div className="channel__quick-actions">
|
2020-03-27 19:57:03 +01:00
|
|
|
{!channelIsBlocked && !channelIsBlackListed && <ShareButton uri={uri} />}
|
2020-06-08 20:42:29 +02:00
|
|
|
{!channelIsBlocked && <ClaimSupportButton uri={uri} />}
|
2020-01-03 17:36:15 +01:00
|
|
|
{!channelIsBlocked && (!channelIsBlackListed || isSubscribed) && <SubscribeButton uri={permanentUrl} />}
|
|
|
|
{!isSubscribed && <BlockButton uri={permanentUrl} />}
|
|
|
|
</div>
|
2020-06-29 21:54:07 +02:00
|
|
|
{cover && (
|
2020-01-03 17:36:15 +01:00
|
|
|
<img
|
|
|
|
className={classnames('channel-cover__custom', { 'channel__image--blurred': channelIsBlocked })}
|
|
|
|
src={cover}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
<div className="channel__primary-info">
|
2020-06-29 21:54:07 +02:00
|
|
|
<ChannelThumbnail
|
|
|
|
className="channel__thumbnail--channel-page"
|
|
|
|
uri={uri}
|
|
|
|
obscure={channelIsBlocked}
|
|
|
|
allowGifs
|
|
|
|
/>
|
2020-01-03 17:36:15 +01:00
|
|
|
<h1 className="channel__title">{title || '@' + channelName}</h1>
|
|
|
|
<div className="channel__meta">
|
|
|
|
<span>
|
2020-05-25 18:19:15 +02:00
|
|
|
{formattedSubCount} {subCount !== 1 ? __('Followers') : __('Follower')}
|
2020-01-03 17:36:15 +01:00
|
|
|
<HelpLink href="https://lbry.com/faq/views" />
|
|
|
|
</span>
|
2020-06-29 21:54:07 +02:00
|
|
|
{channelIsMine && (
|
2020-06-21 18:51:06 +02:00
|
|
|
<>
|
|
|
|
{pending ? (
|
|
|
|
<span>{__('Your changes will be live in a few minutes')}</span>
|
|
|
|
) : (
|
|
|
|
<Button
|
|
|
|
button="alt"
|
|
|
|
title={__('Edit')}
|
|
|
|
onClick={() => setEditing(!editing)}
|
|
|
|
icon={ICONS.EDIT}
|
|
|
|
iconSize={18}
|
|
|
|
disabled={pending}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
</>
|
|
|
|
)}
|
2020-01-03 17:36:15 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-06-18 17:28:30 +02:00
|
|
|
<div className="channel-cover__gradient" />
|
2020-01-03 17:36:15 +01:00
|
|
|
</header>
|
|
|
|
<Tabs onChange={onTabChange} index={tabIndex}>
|
|
|
|
<TabList className="tabs__list--channel-page">
|
|
|
|
<Tab disabled={editing}>{__('Content')}</Tab>
|
|
|
|
<Tab>{editing ? __('Editing Your Channel') : __('About')}</Tab>
|
|
|
|
<Tab disabled={editing}>{__('Comments')}</Tab>
|
|
|
|
</TabList>
|
|
|
|
<TabPanels>
|
|
|
|
<TabPanel>
|
2020-06-18 17:10:46 +02:00
|
|
|
<ChannelContent uri={uri} channelIsBlackListed={channelIsBlackListed} />
|
2020-01-03 17:36:15 +01:00
|
|
|
</TabPanel>
|
|
|
|
<TabPanel>
|
2020-06-29 21:54:07 +02:00
|
|
|
<ChannelAbout uri={uri} />
|
2020-01-03 17:36:15 +01:00
|
|
|
</TabPanel>
|
|
|
|
<TabPanel>
|
2020-07-24 13:35:22 +02:00
|
|
|
{(discussionWasMounted || currentView === DISCUSSION_PAGE) && <ChannelDiscussion uri={uri} />}
|
2020-01-03 17:36:15 +01:00
|
|
|
</TabPanel>
|
|
|
|
</TabPanels>
|
|
|
|
</Tabs>
|
2019-03-28 17:53:13 +01:00
|
|
|
</Page>
|
|
|
|
);
|
2017-05-04 05:44:08 +02:00
|
|
|
}
|
|
|
|
|
2020-06-30 07:51:15 +02:00
|
|
|
export default ChannelPage;
|