File size: 4,240 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 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 |
import { isEnabled } from '@automattic/calypso-config';
import { localize } from 'i18n-calypso';
import { Component } from 'react';
import { connect } from 'react-redux';
import titlecase from 'to-title-case';
import AsyncLoad from 'calypso/components/async-load';
import DocumentHead from 'calypso/components/data/document-head';
import InlineSupportLink from 'calypso/components/inline-support-link';
import { JetpackConnectionHealthBanner } from 'calypso/components/jetpack/connection-health';
import Main from 'calypso/components/main';
import NavigationHeader from 'calypso/components/navigation-header';
import PageViewTracker from 'calypso/lib/analytics/page-view-tracker';
import { mapPostStatus } from 'calypso/lib/route';
import PostTypeFilter from 'calypso/my-sites/post-type-filter';
import PostTypeList from 'calypso/my-sites/post-type-list';
import { withJetpackConnectionProblem } from 'calypso/state/jetpack-connection-health/selectors/is-jetpack-connection-problem.js';
import { POST_STATUSES } from 'calypso/state/posts/constants';
import isJetpackSite from 'calypso/state/sites/selectors/is-jetpack-site';
import { getSelectedSiteId } from 'calypso/state/ui/selectors';
class PostsMain extends Component {
getAnalyticsPath() {
const { siteId, statusSlug, author } = this.props;
let analyticsPath = '/posts';
if ( author ) {
analyticsPath += '/my';
}
if ( statusSlug ) {
analyticsPath += `/${ statusSlug }`;
}
if ( siteId ) {
analyticsPath += '/:site';
}
return analyticsPath;
}
getAnalyticsTitle() {
const { statusSlug } = this.props;
if ( statusSlug ) {
return 'Blog Posts > ' + titlecase( statusSlug );
}
return 'Blog Posts > Published';
}
render() {
const {
author,
category,
search,
siteId,
statusSlug,
tag,
translate,
isJetpack,
isPossibleJetpackConnectionProblem,
} = this.props;
const status = mapPostStatus( statusSlug );
/* Check if All Sites Mode */
const isAllSites = siteId ? 1 : 0;
const query = {
author,
category,
number: 20, // max supported by /me/posts endpoint for all-sites mode
order: status === 'future' ? 'ASC' : 'DESC',
search,
site_visibility: ! siteId ? 'visible' : undefined,
// When searching, search across all statuses so the user can
// always find what they are looking for, regardless of what tab
// the search was initiated from. Use POST_STATUSES rather than
// "any" to do this, since the latter excludes trashed posts.
status: search ? POST_STATUSES.join( ',' ) : status,
tag,
type: 'post',
};
// Since searches are across all statuses, the status needs to be shown
// next to each post.
const showPublishedStatus = Boolean( query.search );
return (
<Main wideLayout className="posts">
{ isJetpack && isPossibleJetpackConnectionProblem && (
<JetpackConnectionHealthBanner siteId={ siteId } />
) }
{ isEnabled( 'jitms' ) && (
<AsyncLoad
require="calypso/blocks/jitm"
template="notice"
placeholder={ null }
messagePath="wp:edit-post:admin_notices"
/>
) }
<PageViewTracker path={ this.getAnalyticsPath() } title={ this.getAnalyticsTitle() } />
<DocumentHead title={ translate( 'Posts' ) } />
<NavigationHeader
screenOptionsTab="edit.php"
navigationItems={ [] }
title={ translate( 'Posts' ) }
subtitle={ translate(
'Create, edit, and manage the posts on your site. {{learnMoreLink}}Learn more{{/learnMoreLink}}.',
'Create, edit, and manage the posts on your sites. {{learnMoreLink}}Learn more{{/learnMoreLink}}.',
{
count: isAllSites,
components: {
learnMoreLink: <InlineSupportLink supportContext="posts" showIcon={ false } />,
},
}
) }
/>
<PostTypeFilter query={ query } siteId={ siteId } statusSlug={ statusSlug } />
<PostTypeList
query={ query }
showPublishedStatus={ showPublishedStatus }
scrollContainer={ document.body }
/>
</Main>
);
}
}
export default connect( ( state ) => {
const siteId = getSelectedSiteId( state );
return {
siteId,
isJetpack: isJetpackSite( state, siteId ),
};
} )( localize( withJetpackConnectionProblem( PostsMain ) ) );
|