File size: 4,731 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 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 |
import { Gridicon, EmbedContainer } from '@automattic/components';
import DOMPurify from 'dompurify';
import { localize } from 'i18n-calypso';
import { get } from 'lodash';
import PropTypes from 'prop-types';
import { Component } from 'react';
import { connect } from 'react-redux';
import AutoDirection from 'calypso/components/auto-direction';
import QueryComment from 'calypso/components/data/query-comment';
import { stripHTML, decodeEntities } from 'calypso/lib/formatting';
import CommentLink from 'calypso/my-sites/comments/comment/comment-link';
import CommentPostLink from 'calypso/my-sites/comments/comment/comment-post-link';
import { getParentComment, getSiteComment } from 'calypso/state/comments/selectors';
import { getSelectedSiteId, getSelectedSiteSlug } from 'calypso/state/ui/selectors';
import { hasBlocks } from './utils';
export class CommentContent extends Component {
static propTypes = {
commentId: PropTypes.number,
isBulkMode: PropTypes.bool,
isPostView: PropTypes.bool,
};
state = {
// Cache whether the comment has blocks. We don't want change that mid-typing (in case the user adds `<!-- wp:`).
originalCommentHasBlocks: hasBlocks( this.props.commentRawContent ),
};
renderInReplyTo = () => {
const { commentId, isBulkMode, parentCommentContent, parentCommentUrl, translate } = this.props;
if ( ! parentCommentContent ) {
return null;
}
return (
<div className="comment__in-reply-to">
{ isBulkMode && <Gridicon icon="reply" size={ 18 } /> }
<span>{ translate( 'In reply to:' ) }</span>
<CommentLink
commentId={ commentId }
href={ parentCommentUrl }
tabIndex={ isBulkMode ? -1 : 0 }
>
{ parentCommentContent }
</CommentLink>
</div>
);
};
render() {
const {
commentContent,
commentId,
commentStatus,
isBulkMode,
isParentCommentLoaded,
isPostView,
parentCommentContent,
parentCommentId,
siteId,
translate,
} = this.props;
return (
<div className="comment__content">
{ ! isParentCommentLoaded && (
<QueryComment commentId={ parentCommentId } siteId={ siteId } forceWpcom />
) }
{ isBulkMode && (
<div className="comment__content-preview">
{ this.renderInReplyTo() }
<AutoDirection>{ decodeEntities( stripHTML( commentContent ) ) }</AutoDirection>
</div>
) }
{ ! isBulkMode && (
<div className="comment__content-full">
{ ( parentCommentContent || ! isPostView || 'approved' !== commentStatus ) && (
<div className="comment__content-info">
{ 'unapproved' === commentStatus && (
<div className="comment__status-label is-pending">{ translate( 'Pending' ) }</div>
) }
{ 'spam' === commentStatus && (
<div className="comment__status-label is-spam">{ translate( 'Spam' ) }</div>
) }
{ 'trash' === commentStatus && (
<div className="comment__status-label is-trash">{ translate( 'Trash' ) }</div>
) }
{ ! isPostView && <CommentPostLink { ...{ commentId, isBulkMode } } /> }
{ this.renderInReplyTo() }
</div>
) }
<AutoDirection>
<EmbedContainer>
{ this.state.originalCommentHasBlocks ? (
<div
className="comment__content-body with-blocks"
// eslint-disable-next-line react/no-danger
dangerouslySetInnerHTML={ {
__html: commentContent,
} }
/>
) : (
<div
className="comment__content-body"
// eslint-disable-next-line react/no-danger
dangerouslySetInnerHTML={ {
__html: DOMPurify.sanitize( commentContent ),
} }
/>
) }
</EmbedContainer>
</AutoDirection>
</div>
) }
</div>
);
}
}
const mapStateToProps = ( state, { commentId } ) => {
const siteId = getSelectedSiteId( state );
const siteSlug = getSelectedSiteSlug( state );
const comment = getSiteComment( state, siteId, commentId );
const postId = get( comment, 'post.ID' );
const parentComment = getParentComment( state, siteId, postId, commentId );
const parentCommentId = get( comment, 'parent.ID', 0 );
const parentCommentContent = decodeEntities( stripHTML( get( parentComment, 'content' ) ) );
const parentCommentUrl = `/comment/${ siteSlug }/${ parentCommentId }`;
return {
commentContent: get( comment, 'content' ),
commentRawContent: get( comment, 'raw_content' ),
commentStatus: get( comment, 'status' ),
isParentCommentLoaded: ! parentCommentId || !! parentCommentContent,
parentCommentContent,
parentCommentId,
parentCommentUrl,
postId,
siteId,
};
};
export default connect( mapStateToProps )( localize( CommentContent ) );
|