|
|
import { Button } from '@automattic/components'; |
|
|
import clsx from 'clsx'; |
|
|
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 FormTextarea from 'calypso/components/forms/form-textarea'; |
|
|
import { decodeEntities } from 'calypso/lib/formatting'; |
|
|
import { |
|
|
bumpStat, |
|
|
composeAnalytics, |
|
|
recordTracksEvent, |
|
|
withAnalytics, |
|
|
} from 'calypso/state/analytics/actions'; |
|
|
import { changeCommentStatus, replyComment } from 'calypso/state/comments/actions'; |
|
|
import { getSiteComment } from 'calypso/state/comments/selectors'; |
|
|
import { removeNotice, successNotice } from 'calypso/state/notices/actions'; |
|
|
import { getSelectedSiteId } from 'calypso/state/ui/selectors'; |
|
|
|
|
|
const TEXTAREA_HEIGHT_COLLAPSED = 47; |
|
|
const TEXTAREA_HEIGHT_FOCUSED = 68; |
|
|
const TEXTAREA_MAX_HEIGHT = 236; |
|
|
const TEXTAREA_VERTICAL_BORDER = 2; |
|
|
|
|
|
export class CommentReply extends Component { |
|
|
static propTypes = { |
|
|
commentId: PropTypes.number, |
|
|
commentsListQuery: PropTypes.object, |
|
|
isReplyVisible: PropTypes.bool, |
|
|
}; |
|
|
|
|
|
state = { |
|
|
hasReplyFocus: false, |
|
|
replyContent: '', |
|
|
textareaHeight: TEXTAREA_HEIGHT_COLLAPSED, |
|
|
}; |
|
|
|
|
|
componentDidMount() { |
|
|
this.textarea.focus(); |
|
|
} |
|
|
|
|
|
componentDidUpdate( prevProps ) { |
|
|
if ( ! prevProps.isReplyVisible && this.props.isReplyVisible ) { |
|
|
this.textarea.focus(); |
|
|
} |
|
|
} |
|
|
|
|
|
storeTextareaRef = ( textarea ) => ( this.textarea = textarea ); |
|
|
|
|
|
blurReply = () => this.setState( { hasReplyFocus: false } ); |
|
|
|
|
|
focusReply = () => this.setState( { hasReplyFocus: true } ); |
|
|
|
|
|
calculateTextareaHeight = () => { |
|
|
const textareaHeight = Math.min( |
|
|
TEXTAREA_MAX_HEIGHT, |
|
|
this.textarea.scrollHeight + TEXTAREA_VERTICAL_BORDER |
|
|
); |
|
|
return Math.max( TEXTAREA_HEIGHT_FOCUSED, textareaHeight ); |
|
|
}; |
|
|
|
|
|
getPlaceholder = () => { |
|
|
const { authorDisplayName: commentAuthor, translate } = this.props; |
|
|
return commentAuthor |
|
|
? translate( 'Reply to %(commentAuthor)s…', { args: { commentAuthor } } ) |
|
|
: translate( 'Reply to comment…' ); |
|
|
}; |
|
|
|
|
|
keyDownHandler = ( event ) => { |
|
|
|
|
|
if ( event.keyCode === 13 && ( event.ctrlKey || event.metaKey ) ) { |
|
|
event.preventDefault(); |
|
|
this.submitReply(); |
|
|
} |
|
|
}; |
|
|
|
|
|
submit = ( event ) => { |
|
|
event.preventDefault(); |
|
|
this.submitReply(); |
|
|
}; |
|
|
|
|
|
submitReply = () => { |
|
|
const { approveComment, commentStatus, postId, replyToComment, siteId, translate } = this.props; |
|
|
const { replyContent } = this.state; |
|
|
|
|
|
this.props.removeNotice( 'comment-notice' ); |
|
|
|
|
|
const alsoApprove = 'approved' !== commentStatus; |
|
|
|
|
|
replyToComment( replyContent, siteId, postId, { alsoApprove } ); |
|
|
|
|
|
this.props.successNotice( |
|
|
alsoApprove |
|
|
? translate( 'Comment approved and reply submitted.' ) |
|
|
: translate( 'Reply submitted.' ), |
|
|
{ |
|
|
id: 'comment-notice', |
|
|
isPersistent: true, |
|
|
} |
|
|
); |
|
|
|
|
|
this.setState( { replyContent: '' } ); |
|
|
this.blurReply(); |
|
|
|
|
|
if ( alsoApprove ) { |
|
|
approveComment( siteId, postId, { previousStatus: commentStatus } ); |
|
|
} |
|
|
|
|
|
|
|
|
if ( window ) { |
|
|
const path = get( window, 'history.state.path' ); |
|
|
const newPath = path.replace( /[#].*/, '' ); |
|
|
window.history.replaceState( window.history.state, '', newPath ); |
|
|
} |
|
|
}; |
|
|
|
|
|
updateTextarea = ( event ) => { |
|
|
const { value: replyContent } = event.target; |
|
|
const textareaHeight = this.calculateTextareaHeight(); |
|
|
this.setState( { replyContent, textareaHeight } ); |
|
|
}; |
|
|
|
|
|
render() { |
|
|
const { translate } = this.props; |
|
|
const { hasReplyFocus, replyContent, textareaHeight } = this.state; |
|
|
|
|
|
const hasReplyContent = replyContent.trim().length > 0; |
|
|
|
|
|
const hasScrollbar = textareaHeight === TEXTAREA_MAX_HEIGHT; |
|
|
|
|
|
const buttonClasses = clsx( 'comment__reply-submit', { |
|
|
'has-scrollbar': hasScrollbar, |
|
|
'is-active': hasReplyContent, |
|
|
} ); |
|
|
|
|
|
const textareaClasses = clsx( 'comment__reply-textarea', { |
|
|
'has-content': hasReplyContent, |
|
|
'has-focus': hasReplyFocus, |
|
|
'has-scrollbar': hasScrollbar, |
|
|
} ); |
|
|
|
|
|
|
|
|
const textareaStyle = { |
|
|
height: hasReplyFocus || hasReplyContent ? textareaHeight : TEXTAREA_HEIGHT_COLLAPSED, |
|
|
}; |
|
|
|
|
|
return ( |
|
|
<form className="comment__reply"> |
|
|
<AutoDirection> |
|
|
<FormTextarea |
|
|
className={ textareaClasses } |
|
|
onBlur={ this.blurReply } |
|
|
onChange={ this.updateTextarea } |
|
|
onFocus={ this.focusReply } |
|
|
onKeyDown={ this.keyDownHandler } |
|
|
placeholder={ this.getPlaceholder() } |
|
|
forwardedRef={ this.storeTextareaRef } |
|
|
style={ textareaStyle } |
|
|
value={ replyContent } |
|
|
/> |
|
|
</AutoDirection> |
|
|
|
|
|
<Button |
|
|
borderless |
|
|
className={ buttonClasses } |
|
|
compact |
|
|
disabled={ ! hasReplyContent } |
|
|
onClick={ this.submit } |
|
|
tabIndex="0" |
|
|
> |
|
|
{ translate( 'Send' ) } |
|
|
</Button> |
|
|
</form> |
|
|
); |
|
|
} |
|
|
} |
|
|
|
|
|
const mapStateToProps = ( state, { commentId } ) => { |
|
|
const siteId = getSelectedSiteId( state ); |
|
|
const comment = getSiteComment( state, siteId, commentId ); |
|
|
|
|
|
return { |
|
|
authorDisplayName: decodeEntities( get( comment, 'author.name' ) ), |
|
|
commentStatus: get( comment, 'status' ), |
|
|
postId: get( comment, 'post.ID' ), |
|
|
siteId, |
|
|
}; |
|
|
}; |
|
|
|
|
|
const mapDispatchToProps = ( dispatch, { commentId, commentsListQuery } ) => ( { |
|
|
approveComment: ( siteId, postId, analytics = {} ) => |
|
|
dispatch( |
|
|
withAnalytics( |
|
|
composeAnalytics( |
|
|
recordTracksEvent( 'calypso_comment_management_change_status', { |
|
|
also_unlike: false, |
|
|
is_undo: false, |
|
|
previous_status: analytics.previousStatus, |
|
|
status: 'approved', |
|
|
} ), |
|
|
bumpStat( 'calypso_comment_management', 'comment_status_changed_to_approved' ) |
|
|
), |
|
|
changeCommentStatus( siteId, postId, commentId, 'approved' ) |
|
|
) |
|
|
), |
|
|
removeNotice: ( noticeId ) => dispatch( removeNotice( noticeId ) ), |
|
|
replyToComment: ( replyContent, siteId, postId, analytics = { alsoApprove: false } ) => |
|
|
dispatch( |
|
|
withAnalytics( |
|
|
composeAnalytics( |
|
|
recordTracksEvent( 'calypso_comment_management_reply', { |
|
|
also_approve: analytics.alsoApprove, |
|
|
} ), |
|
|
bumpStat( 'calypso_comment_management', 'comment_reply' ) |
|
|
), |
|
|
replyComment( replyContent, siteId, postId, commentId, commentsListQuery ) |
|
|
) |
|
|
), |
|
|
successNotice: ( text, options ) => dispatch( successNotice( text, options ) ), |
|
|
} ); |
|
|
|
|
|
export default connect( mapStateToProps, mapDispatchToProps )( localize( CommentReply ) ); |
|
|
|