lbry-desktop/ui/page/publish/view.jsx

37 lines
786 B
React
Raw Normal View History

// @flow
import React from 'react';
import PublishForm from 'component/publishForm';
2018-03-26 23:32:43 +02:00
import Page from 'component/page';
import YrblWalletEmpty from 'component/yrblWalletEmpty';
2016-11-22 21:19:08 +01:00
type Props = {
balance: number,
};
function PublishPage(props: Props) {
2019-11-13 19:14:19 +01:00
const { balance } = props;
function scrollToTop() {
const mainContent = document.querySelector('main');
2018-03-26 23:32:43 +02:00
if (mainContent) {
mainContent.scrollTop = 0; // It would be nice to animate this
}
}
return (
2020-09-16 21:36:01 +02:00
<Page
noFooter
noSideNavigation
backout={{
title: __('Upload'),
backLabel: __('Back'),
}}
>
{balance === 0 && <YrblWalletEmpty />}
<PublishForm scrollToTop={scrollToTop} disabled={balance === 0} />
</Page>
);
2018-03-26 23:32:43 +02:00
}
2017-06-17 19:59:18 +02:00
2016-11-22 21:19:08 +01:00
export default PublishPage;