mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-23 09:37:24 +00:00
47 lines
1.4 KiB
JavaScript
47 lines
1.4 KiB
JavaScript
// @flow
|
|
import React, { Fragment } from 'react';
|
|
import FileList from 'component/fileList';
|
|
import HiddenNsfwClaims from 'component/hiddenNsfwClaims';
|
|
import { withRouter } from 'react-router-dom';
|
|
import Paginate from 'component/common/paginate';
|
|
import Spinner from 'component/spinner';
|
|
|
|
type Props = {
|
|
uri: string,
|
|
totalPages: number,
|
|
fetching: boolean,
|
|
params: { page: number },
|
|
claimsInChannel: Array<StreamClaim>,
|
|
channelIsMine: boolean,
|
|
fetchClaims: (string, number) => void,
|
|
location: UrlLocation,
|
|
};
|
|
|
|
function ChannelContent(props: Props) {
|
|
const { uri, fetching, claimsInChannel, totalPages, channelIsMine, fetchClaims } = props;
|
|
const hasContent = Boolean(claimsInChannel && claimsInChannel.length);
|
|
|
|
return (
|
|
<Fragment>
|
|
{fetching && !hasContent && (
|
|
<section className="main--empty">
|
|
<Spinner delayed />
|
|
</section>
|
|
)}
|
|
|
|
{!fetching && !hasContent && <h2 className="empty">{__("This channel hasn't uploaded anything.")}</h2>}
|
|
|
|
{!channelIsMine && <HiddenNsfwClaims className="card__content help" uri={uri} />}
|
|
|
|
{hasContent && <FileList sortByHeight hideFilter fileInfos={claimsInChannel} />}
|
|
|
|
<Paginate
|
|
onPageChange={page => fetchClaims(uri, page)}
|
|
totalPages={totalPages}
|
|
loading={fetching && !hasContent}
|
|
/>
|
|
</Fragment>
|
|
);
|
|
}
|
|
|
|
export default withRouter(ChannelContent);
|