2020-03-18 18:11:37 +01:00
|
|
|
// @flow
|
2020-08-26 19:19:03 +02:00
|
|
|
import * as PAGES from 'constants/pages';
|
2020-03-18 18:11:37 +01:00
|
|
|
import React from 'react';
|
|
|
|
import Page from 'component/page';
|
|
|
|
import Spinner from 'component/spinner';
|
2020-03-18 22:14:11 +01:00
|
|
|
import Button from 'component/button';
|
|
|
|
import CreatorAnalytics from 'component/creatorAnalytics';
|
2020-04-22 21:07:38 +02:00
|
|
|
import ChannelSelector from 'component/channelSelector';
|
2020-08-26 19:19:03 +02:00
|
|
|
import Yrbl from 'component/yrbl';
|
2020-03-18 18:11:37 +01:00
|
|
|
|
|
|
|
type Props = {
|
2022-01-21 18:38:11 +01:00
|
|
|
hasChannels: boolean,
|
2020-03-18 22:14:11 +01:00
|
|
|
fetchingChannels: boolean,
|
2021-02-09 17:05:56 +01:00
|
|
|
activeChannelClaim: ?ChannelClaim,
|
2020-03-18 18:11:37 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
export default function CreatorDashboardPage(props: Props) {
|
2022-01-21 18:38:11 +01:00
|
|
|
const { hasChannels, fetchingChannels, activeChannelClaim } = props;
|
2020-10-12 23:12:46 +02:00
|
|
|
|
2020-03-18 18:11:37 +01:00
|
|
|
return (
|
|
|
|
<Page>
|
2020-03-18 22:14:11 +01:00
|
|
|
{fetchingChannels && (
|
2020-03-18 18:11:37 +01:00
|
|
|
<div className="main--empty">
|
|
|
|
<Spinner delayed />
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
|
2021-02-09 17:05:56 +01:00
|
|
|
{!fetchingChannels && !hasChannels && (
|
2020-08-26 19:19:03 +02:00
|
|
|
<Yrbl
|
|
|
|
type="happy"
|
|
|
|
title={__("You haven't created a channel yet, let's fix that!")}
|
2020-09-02 22:08:37 +02:00
|
|
|
actions={
|
|
|
|
<div className="section__actions">
|
|
|
|
<Button button="primary" navigate={`/$/${PAGES.CHANNEL_NEW}`} label={__('Create A Channel')} />
|
2020-03-18 22:14:11 +01:00
|
|
|
</div>
|
2020-08-26 19:19:03 +02:00
|
|
|
}
|
|
|
|
/>
|
2020-03-18 18:11:37 +01:00
|
|
|
)}
|
2020-03-18 22:14:11 +01:00
|
|
|
|
2021-02-09 17:05:56 +01:00
|
|
|
{!fetchingChannels && activeChannelClaim && (
|
2020-04-22 21:07:38 +02:00
|
|
|
<React.Fragment>
|
2021-06-14 19:19:03 +02:00
|
|
|
<ChannelSelector hideAnon />
|
|
|
|
<CreatorAnalytics uri={activeChannelClaim.canonical_url} />
|
2020-04-22 21:07:38 +02:00
|
|
|
</React.Fragment>
|
|
|
|
)}
|
2020-03-18 18:11:37 +01:00
|
|
|
</Page>
|
|
|
|
);
|
|
|
|
}
|