File size: 3,209 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 |
import { translate } from 'i18n-calypso';
import { get, pick } from 'lodash';
import PropTypes from 'prop-types';
import { Component } from 'react';
import { connect } from 'react-redux';
import LikeButton from 'calypso/blocks/like-button/button';
import ReaderLikeIcon from 'calypso/reader/components/icons/like-icon';
import { recordAction, recordGaEvent } from 'calypso/reader/stats';
import { likeComment, unlikeComment } from 'calypso/state/comments/actions';
import { getCommentLike } from 'calypso/state/comments/selectors';
import { isUserLoggedIn } from 'calypso/state/current-user/selectors';
import { recordReaderTracksEvent } from 'calypso/state/reader/analytics/actions';
import { registerLastActionRequiresLogin } from 'calypso/state/reader-ui/actions';
class CommentLikeButtonContainer extends Component {
constructor() {
super();
this.boundHandleLikeToggle = this.handleLikeToggle.bind( this );
}
handleLikeToggle( liked ) {
if ( ! this.props.isLoggedIn ) {
return this.props.registerLastActionRequiresLogin( {
type: liked ? 'comment-like' : 'comment-unlike',
siteId: this.props.siteId,
postId: this.props.postId,
commentId: this.props.commentId,
} );
}
this.recordLikeToggle( liked );
}
recordLikeToggle = ( liked ) => {
this.props.onLikeToggle( liked );
if ( liked ) {
this.props.likeComment( this.props.siteId, this.props.postId, this.props.commentId );
} else {
this.props.unlikeComment( this.props.siteId, this.props.postId, this.props.commentId );
}
recordAction( liked ? 'liked_comment' : 'unliked_comment' );
recordGaEvent( liked ? 'Clicked Comment Like' : 'Clicked Comment Unlike' );
this.props.recordReaderTracksEvent(
'calypso_reader_' + ( liked ? 'liked' : 'unliked' ) + '_comment',
{
blog_id: this.props.siteId,
comment_id: this.props.commentId,
}
);
};
render() {
const props = pick( this.props, [ 'showZeroCount', 'tagName' ] );
const likeCount = get( this.props.commentLike, 'like_count' );
const iLike = get( this.props.commentLike, 'i_like' );
const likedLabel = translate( 'Liked' );
const likeIcon = ReaderLikeIcon( {
liked: iLike,
iconSize: 18,
} );
return (
<LikeButton
{ ...props }
likeCount={ likeCount }
liked={ iLike }
onLikeToggle={ this.boundHandleLikeToggle }
likedLabel={ likedLabel }
iconSize={ 18 }
icon={ likeIcon }
defaultLabel={ translate( 'Like' ) }
/>
);
}
}
CommentLikeButtonContainer.propTypes = {
siteId: PropTypes.number.isRequired,
postId: PropTypes.number.isRequired,
commentId: PropTypes.number.isRequired,
showZeroCount: PropTypes.bool,
tagName: PropTypes.oneOfType( [ PropTypes.string, PropTypes.object ] ),
// connected props:
commentLike: PropTypes.object,
likeComment: PropTypes.func.isRequired,
unlikeComment: PropTypes.func.isRequired,
onLikeToggle: PropTypes.func.isRequired,
};
export default connect(
( state, props ) => ( {
commentLike: getCommentLike( state, props.siteId, props.postId, props.commentId ),
isLoggedIn: isUserLoggedIn( state ),
} ),
{ likeComment, recordReaderTracksEvent, unlikeComment, registerLastActionRequiresLogin }
)( CommentLikeButtonContainer );
|