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

38 lines
951 B
React
Raw Normal View History

// @flow
import React from 'react';
import ClaimList from 'component/claimList';
import Page from 'component/page';
type Props = {
uris: Array<string>,
};
function ListBlocked(props: Props) {
const { uris } = props;
return (
2019-08-02 17:11:31 +02:00
<Page>
{uris && uris.length ? (
2020-01-08 06:04:35 +01:00
<ClaimList
header={<h1>{__('Your Blocked Channels')}</h1>}
persistedStorageKey="block-list-published"
uris={uris}
defaultSort
showHiddenByUser
/>
) : (
<div className="main--empty">
<section className="card card--section">
2019-11-22 22:13:00 +01:00
<h2 className="card__title card__title--deprecated">{__('You arent blocking any channels')}</h2>
<p className="section__subtitle">
{__('When you block a channel, all content from that channel will be hidden.')}
</p>
</section>
</div>
)}
</Page>
);
}
export default ListBlocked;