lbry-desktop/src/ui/page/channels/view.jsx

51 lines
1.5 KiB
React
Raw Normal View History

// @flow
import React, { useEffect } from 'react';
import ClaimList from 'component/claimList';
import Page from 'component/page';
import Button from 'component/button';
import YoutubeTransferStatus from 'component/youtubeTransferStatus';
type Props = {
channels: Array<ChannelClaim>,
fetchChannelListMine: () => void,
fetchingChannels: boolean,
youtubeChannels: ?Array<any>,
};
export default function ChannelsPage(props: Props) {
const { channels, fetchChannelListMine, fetchingChannels, youtubeChannels } = props;
const hasYoutubeChannels = youtubeChannels && Boolean(youtubeChannels.length);
useEffect(() => {
fetchChannelListMine();
}, [fetchChannelListMine]);
return (
<Page>
2019-10-01 07:55:19 +02:00
{/* @if TARGET='app' */}
{hasYoutubeChannels && <YoutubeTransferStatus hideChannelLink />}
2019-10-01 07:55:19 +02:00
{/* @endif */}
{channels && channels.length ? (
<div className="card">
<ClaimList
2019-09-30 21:52:53 +02:00
header={__('Your Channels')}
loading={fetchingChannels}
uris={channels.map(channel => channel.permanent_url)}
/>
</div>
) : (
<section className="main--empty">
<div className=" section--small">
<h2 className="section__title--large">{__('No Channels Created Yet')}</h2>
<div className="section__actions">
<Button button="primary" navigate="/$/publish" label={__('Create A Channel')} />
</div>
</div>
</section>
)}
</Page>
);
}