| import { localize } from 'i18n-calypso'; | |
| import { get } from 'lodash'; | |
| import PropTypes from 'prop-types'; | |
| import { Component } from 'react'; | |
| import { connect } from 'react-redux'; | |
| import { | |
| bumpStat, | |
| composeAnalytics, | |
| recordTracksEvent, | |
| withAnalytics, | |
| } from 'calypso/state/analytics/actions'; | |
| import { changeCommentStatus } from 'calypso/state/comments/actions'; | |
| import { getSiteComment } from 'calypso/state/comments/selectors'; | |
| import { removeNotice, successNotice } from 'calypso/state/notices/actions'; | |
| class ModerateComment extends Component { | |
| static propTypes = { | |
| siteId: PropTypes.number, | |
| postId: PropTypes.number, | |
| commentId: PropTypes.number.isRequired, | |
| newStatus: PropTypes.string, | |
| currentStatus: PropTypes.string, | |
| updateCommentStatus: PropTypes.func.isRequired, | |
| }; | |
| componentDidMount() { | |
| this.moderate( this.props ); | |
| } | |
| componentDidUpdate( prevProps ) { | |
| if ( | |
| this.props.siteId === prevProps.siteId && | |
| this.props.postId === prevProps.postId && | |
| this.props.commentId === prevProps.commentId && | |
| this.props.newStatus === prevProps.newStatus | |
| ) { | |
| return; | |
| } | |
| this.moderate( this.props ); | |
| } | |
| showNotice( status ) { | |
| const { translate } = this.props; | |
| this.props.removeNotice( 'comment-notice' ); | |
| const message = get( | |
| { | |
| approved: translate( 'Comment approved.' ), | |
| unapproved: translate( 'Comment unapproved.' ), | |
| spam: translate( 'Comment marked as spam.' ), | |
| trash: translate( 'Comment moved to trash.' ), | |
| }, | |
| status | |
| ); | |
| const noticeOptions = { | |
| id: 'comment-notice', | |
| isPersistent: true, | |
| }; | |
| this.props.successNotice( message, noticeOptions ); | |
| } | |
| moderate( { siteId, postId, commentId, newStatus, currentStatus, updateCommentStatus } ) { | |
| if ( | |
| ! siteId || | |
| ! postId || | |
| ! commentId || | |
| ! newStatus || | |
| newStatus === currentStatus || | |
| 'edit' === newStatus || | |
| 'delete' === newStatus | |
| ) { | |
| return; | |
| } | |
| updateCommentStatus(); | |
| this.showNotice( newStatus ); | |
| } | |
| render() { | |
| return null; | |
| } | |
| } | |
| const mapStateToProps = ( state, { siteId, commentId } ) => { | |
| const comment = getSiteComment( state, siteId, commentId ); | |
| return { | |
| currentStatus: get( comment, 'status' ), | |
| }; | |
| }; | |
| const mapDispatchToProps = ( dispatch, { siteId, postId, commentId, newStatus } ) => ( { | |
| removeNotice: ( noticeId ) => dispatch( removeNotice( noticeId ) ), | |
| successNotice: ( text, options ) => dispatch( successNotice( text, options ) ), | |
| updateCommentStatus: () => | |
| dispatch( | |
| withAnalytics( | |
| composeAnalytics( | |
| recordTracksEvent( 'calypso_comment_management_change_status_from_email', { | |
| status: newStatus, | |
| } ), | |
| bumpStat( 'calypso_comment_management', 'comment_status_changed_to_' + newStatus ) | |
| ), | |
| changeCommentStatus( siteId, postId, commentId, newStatus ) | |
| ) | |
| ), | |
| } ); | |
| export default connect( mapStateToProps, mapDispatchToProps )( localize( ModerateComment ) ); | |