|
|
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 ); |
|
|
|
|
|
const isAllSites = siteId ? 1 : 0; |
|
|
const query = { |
|
|
author, |
|
|
category, |
|
|
number: 20, |
|
|
order: status === 'future' ? 'ASC' : 'DESC', |
|
|
search, |
|
|
site_visibility: ! siteId ? 'visible' : undefined, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
status: search ? POST_STATUSES.join( ',' ) : status, |
|
|
tag, |
|
|
type: '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 ) ) ); |
|
|
|