ea74a66dbd
* initial support for block/mute * hide blocked + muted content everywhere * add info message for blocked/muted characteristics * sort blocked list by most recent block first * add 'blocked' message on channel page for channels that you have blocked * cleanup * delete unused files * always pass mute/block list to claim_search on homepage * PR cleanup
34 lines
926 B
JavaScript
34 lines
926 B
JavaScript
// @flow
|
|
import * as PAGES from 'constants/pages';
|
|
import React from 'react';
|
|
import ChannelEdit from 'component/channelEdit';
|
|
import Page from 'component/page';
|
|
import { useHistory } from 'react-router';
|
|
import YrblWalletEmpty from 'component/yrblWalletEmpty';
|
|
|
|
type Props = {
|
|
balance: number,
|
|
};
|
|
|
|
function ChannelNew(props: Props) {
|
|
const { balance } = props;
|
|
const { push, location } = useHistory();
|
|
const urlSearchParams = new URLSearchParams(location.search);
|
|
const redirectUrl = urlSearchParams.get('redirect');
|
|
const emptyBalance = balance === 0;
|
|
|
|
return (
|
|
<Page noSideNavigation noFooter backout={{ title: __('Create a channel'), backLabel: __('Cancel') }}>
|
|
{emptyBalance && <YrblWalletEmpty />}
|
|
|
|
<ChannelEdit
|
|
disabled={emptyBalance}
|
|
onDone={() => {
|
|
push(redirectUrl || `/$/${PAGES.CHANNELS}`);
|
|
}}
|
|
/>
|
|
</Page>
|
|
);
|
|
}
|
|
|
|
export default ChannelNew;
|