import { Gridicon } from '@automattic/components';
import { localize } from 'i18n-calypso';
import { get } from 'lodash';
import { connect } from 'react-redux';
import QueryPosts from 'calypso/components/data/query-posts';
import { decodeEntities, stripHTML } from 'calypso/lib/formatting';
import CommentLink from 'calypso/my-sites/comments/comment/comment-link';
import { getSiteComment } from 'calypso/state/comments/selectors';
import { getSitePost } from 'calypso/state/posts/selectors';
import { getSelectedSiteId, getSelectedSiteSlug } from 'calypso/state/ui/selectors';
const CommentPostLink = ( {
commentId,
isBulkMode,
isPostTitleLoaded,
postId,
postTitle,
siteId,
siteSlug,
status,
translate,
} ) => (
{ ! isPostTitleLoaded && postId && }
{ postTitle.trim() || translate( 'Untitled' ) }
);
const mapStateToProps = ( state, { commentId } ) => {
const siteId = getSelectedSiteId( state );
const siteSlug = getSelectedSiteSlug( state );
const comment = getSiteComment( state, siteId, commentId );
const commentStatus = get( comment, 'status' );
const postId = get( comment, 'post.ID' );
const post = getSitePost( state, siteId, postId );
const postTitle =
decodeEntities( get( comment, 'post.title' ) ) ||
decodeEntities( stripHTML( get( post, 'excerpt' ) ) );
return {
isPostTitleLoaded: !! postTitle || !! post,
postId,
postTitle,
siteSlug,
siteId,
status: 'unapproved' === commentStatus ? 'pending' : commentStatus,
};
};
export default connect( mapStateToProps )( localize( CommentPostLink ) );