File size: 3,516 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
import { Card } from '@automattic/components';
import { localizeUrl } from '@automattic/i18n-utils';
import { localize } from 'i18n-calypso';
import { times } from 'lodash';
import { Component } from 'react';
import { connect } from 'react-redux';
import DocumentHead from 'calypso/components/data/document-head';
import QuerySiteBlocks from 'calypso/components/data/query-site-blocks';
import InfiniteList from 'calypso/components/infinite-list';
import InlineSupportLink from 'calypso/components/inline-support-link';
import Main from 'calypso/components/main';
import NavigationHeader from 'calypso/components/navigation-header';
import PageViewTracker from 'calypso/lib/analytics/page-view-tracker';
import { requestSiteBlocks } from 'calypso/state/reader/site-blocks/actions';
import {
getBlockedSites,
isFetchingSiteBlocks,
getSiteBlocksCurrentPage,
getSiteBlocksLastPage,
} from 'calypso/state/reader/site-blocks/selectors';
import SiteBlockListItem from './list-item';
import './style.scss';
class SiteBlockList extends Component {
fetchNextPage = () => {
const { currentPage, lastPage } = this.props;
if ( currentPage === lastPage ) {
return;
}
this.props.requestSiteBlocks( { page: currentPage + 1 } );
};
renderPlaceholders() {
return times( 2, ( i ) => (
<div
aria-hidden="true"
className="site-blocks__list-item is-placeholder"
key={ 'site-block-list-item-placeholder-' + i }
>
<span className="site-blocks__list-item-placeholder-text">Blocked site</span>
</div>
) );
}
renderItem( siteId ) {
return <SiteBlockListItem key={ 'site-block-list-item-' + siteId } siteId={ siteId } />;
}
getItemRef = ( siteId ) => {
return 'site-block-' + siteId;
};
render() {
const { translate, blockedSites, currentPage, lastPage } = this.props;
const hasNoBlocks = blockedSites.length === 0 && currentPage === lastPage;
return (
<Main wideLayout className="site-blocks">
<QuerySiteBlocks />
<PageViewTracker path="/me/site-blocks" title="Me > Blocked Sites" />
<DocumentHead title={ translate( 'Blocked Sites' ) } />
<NavigationHeader navigationItems={ [] } title={ translate( 'Blocked Sites' ) } />
<Card className="site-blocks__intro">
<p>
{ translate(
'Blocked sites will not appear in your Reader and will not be recommended to you.'
) }{ ' ' }
<InlineSupportLink
showIcon={ false }
supportPostId={ 32011 }
supportLink={ localizeUrl(
'https://wordpress.com/support/reader/#interact-with-posts'
) }
/>
</p>
{ hasNoBlocks && (
<p className="site-blocks__no-sites">
{ translate( "You haven't blocked any sites yet." ) }
</p>
) }
{ ! hasNoBlocks && (
<InfiniteList
items={ this.props.blockedSites }
className="site-blocks__list"
fetchNextPage={ this.fetchNextPage }
renderLoadingPlaceholders={ this.renderPlaceholders }
renderItem={ this.renderItem }
fetchingNextPage={ this.props.isFetching }
lastPage={ currentPage === lastPage }
guessedItemHeight={ 100 }
getItemRef={ this.getItemRef }
/>
) }
</Card>
</Main>
);
}
}
export default connect(
( state ) => {
return {
blockedSites: getBlockedSites( state ),
currentPage: getSiteBlocksCurrentPage( state ),
lastPage: getSiteBlocksLastPage( state ),
isFetching: isFetchingSiteBlocks( state ),
};
},
{ requestSiteBlocks }
)( localize( SiteBlockList ) );
|