| import { localize } from 'i18n-calypso'; | |
| import { get } from 'lodash'; | |
| import { connect } from 'react-redux'; | |
| import QueryPosts from 'calypso/components/data/query-posts'; | |
| import HeaderCake from 'calypso/components/header-cake'; | |
| import { convertDateToUserLocation } from 'calypso/components/post-schedule/utils'; | |
| import StickyPanel from 'calypso/components/sticky-panel'; | |
| import { decodeEntities, stripHTML } from 'calypso/lib/formatting'; | |
| import { gmtOffset, timezone } from 'calypso/lib/site/utils'; | |
| import { bumpStat, composeAnalytics, recordTracksEvent } from 'calypso/state/analytics/actions'; | |
| import { getSiteComments } from 'calypso/state/comments/selectors'; | |
| import { getSitePost } from 'calypso/state/posts/selectors'; | |
| import hasNavigated from 'calypso/state/selectors/has-navigated'; | |
| import { isJetpackSite } from 'calypso/state/sites/selectors'; | |
| import { | |
| getSelectedSite, | |
| getSelectedSiteId, | |
| getSelectedSiteSlug, | |
| } from 'calypso/state/ui/selectors'; | |
| function goBack() { | |
| window.history.back(); | |
| } | |
| export const CommentListHeader = ( { | |
| commentId, | |
| postDate, | |
| postId, | |
| postTitle, | |
| postUrl, | |
| recordReaderArticleOpened, | |
| site, | |
| siteId, | |
| siteSlug, | |
| navigated, | |
| translate, | |
| } ) => { | |
| const formattedDate = postDate | |
| ? convertDateToUserLocation( postDate, timezone( site ), gmtOffset( site ) ).format( 'll LT' ) | |
| : ''; | |
| const title = postTitle.trim() || translate( 'Untitled' ); | |
| const shouldUseHistoryBack = window.history.length > 1 && navigated; | |
| const backHref = ! shouldUseHistoryBack ? `/comments/all/${ siteSlug }` : null; | |
| return ( | |
| <StickyPanel className="comment-list__header"> | |
| <QueryPosts siteId={ siteId } postId={ postId } /> | |
| <HeaderCake | |
| actionHref={ postUrl } | |
| actionIcon="visible" | |
| actionOnClick={ recordReaderArticleOpened } | |
| actionText={ translate( 'View Post' ) } | |
| onClick={ shouldUseHistoryBack ? goBack : undefined } | |
| backHref={ backHref } | |
| alwaysShowActionText | |
| > | |
| <div className="comment-list__header-title"> | |
| { translate( | |
| 'Comment on {{span}}%(postTitle)s{{/span}}', | |
| 'Comments on {{span}}%(postTitle)s{{/span}}', | |
| { | |
| count: commentId ? 1 : 2, | |
| args: { postTitle: title }, | |
| components: { span: <span className="comment-list__header-post-title" /> }, | |
| } | |
| ) } | |
| </div> | |
| <div className="comment-list__header-date">{ formattedDate }</div> | |
| </HeaderCake> | |
| </StickyPanel> | |
| ); | |
| }; | |
| const mapStateToProps = ( state, { postId } ) => { | |
| const site = getSelectedSite( state ); | |
| const siteId = getSelectedSiteId( state ); | |
| const siteSlug = getSelectedSiteSlug( state ); | |
| const post = getSitePost( state, siteId, postId ); | |
| const postDate = get( post, 'date' ); | |
| const postTitle = decodeEntities( | |
| stripHTML( | |
| get( post, 'title' ) || | |
| get( post, 'excerpt' ) || | |
| get( getSiteComments( state, siteId ), '[0].post.title' ) | |
| ) | |
| ); | |
| const isJetpack = isJetpackSite( state, siteId ); | |
| const navigated = hasNavigated( state ); | |
| return { | |
| postDate, | |
| postTitle, | |
| postUrl: isJetpack ? get( post, 'URL' ) : `/reader/blogs/${ siteId }/posts/${ postId }`, | |
| site, | |
| siteId, | |
| siteSlug, | |
| navigated, | |
| }; | |
| }; | |
| const mapDispatchToProps = ( dispatch ) => ( { | |
| recordReaderArticleOpened: () => | |
| dispatch( | |
| composeAnalytics( | |
| recordTracksEvent( 'calypso_comment_management_article_opened' ), | |
| bumpStat( 'calypso_comment_management', 'article_opened' ) | |
| ) | |
| ), | |
| } ); | |
| export default connect( mapStateToProps, mapDispatchToProps )( localize( CommentListHeader ) ); | |