|
|
import { localize } from 'i18n-calypso'; |
|
|
import { map, get, last, uniqBy, size, filter, compact } from 'lodash'; |
|
|
import PropTypes from 'prop-types'; |
|
|
import { Component } from 'react'; |
|
|
import { connect } from 'react-redux'; |
|
|
import { isAncestor } from 'calypso/blocks/comments/utils'; |
|
|
import GravatarCaterpillar from 'calypso/components/gravatar-caterpillar'; |
|
|
import { recordAction, recordGaEvent } from 'calypso/reader/stats'; |
|
|
import { expandComments } from 'calypso/state/comments/actions'; |
|
|
import { POST_COMMENT_DISPLAY_TYPES } from 'calypso/state/comments/constants'; |
|
|
import { getPostCommentsTree, getDateSortedPostComments } from 'calypso/state/comments/selectors'; |
|
|
import { recordReaderTracksEvent } from 'calypso/state/reader/analytics/actions'; |
|
|
|
|
|
import './style.scss'; |
|
|
|
|
|
const MAX_GRAVATARS_TO_DISPLAY = 10; |
|
|
const NUMBER_TO_EXPAND = 10; |
|
|
|
|
|
class ConversationCaterpillarComponent extends Component { |
|
|
static propTypes = { |
|
|
blogId: PropTypes.number.isRequired, |
|
|
postId: PropTypes.number.isRequired, |
|
|
commentsTree: PropTypes.object.isRequired, |
|
|
comments: PropTypes.array.isRequired, |
|
|
commentsToShow: PropTypes.object, |
|
|
parentCommentId: PropTypes.number, |
|
|
}; |
|
|
|
|
|
getExpandableComments = () => { |
|
|
const { comments, commentsToShow, parentCommentId, commentsTree } = this.props; |
|
|
const isRoot = ! parentCommentId; |
|
|
const parentComment = get( commentsTree, [ parentCommentId, 'data' ] ); |
|
|
|
|
|
const childComments = isRoot |
|
|
? comments |
|
|
: filter( comments, ( child ) => isAncestor( parentComment, child, commentsTree ) ); |
|
|
|
|
|
const commentsToExpand = filter( childComments, ( comment ) => ! commentsToShow[ comment.ID ] ); |
|
|
|
|
|
return commentsToExpand; |
|
|
}; |
|
|
|
|
|
handleTickle = () => { |
|
|
const { blogId, postId } = this.props; |
|
|
const commentsToExpand = this.getExpandableComments().slice( -1 * NUMBER_TO_EXPAND ); |
|
|
|
|
|
|
|
|
this.props.expandComments( { |
|
|
siteId: blogId, |
|
|
postId, |
|
|
commentIds: map( commentsToExpand, 'ID' ), |
|
|
displayType: POST_COMMENT_DISPLAY_TYPES.excerpt, |
|
|
} ); |
|
|
|
|
|
this.props.expandComments( { |
|
|
siteId: blogId, |
|
|
postId, |
|
|
commentIds: compact( map( commentsToExpand, ( c ) => get( c, 'parent.ID', null ) ) ), |
|
|
displayType: POST_COMMENT_DISPLAY_TYPES.excerpt, |
|
|
} ); |
|
|
recordAction( 'comment_caterpillar_click' ); |
|
|
recordGaEvent( 'Clicked Caterpillar' ); |
|
|
this.props.recordReaderTracksEvent( 'calypso_reader_comment_caterpillar_click', { |
|
|
blog_id: blogId, |
|
|
post_id: postId, |
|
|
} ); |
|
|
}; |
|
|
|
|
|
render() { |
|
|
const { translate, parentCommentId, comments } = this.props; |
|
|
const allExpandableComments = this.getExpandableComments(); |
|
|
const expandableComments = allExpandableComments.slice( -1 * NUMBER_TO_EXPAND ); |
|
|
const isRoot = ! parentCommentId; |
|
|
const numberUnfetchedComments = this.props.commentCount - size( comments ); |
|
|
const commentCount = isRoot |
|
|
? numberUnfetchedComments + size( allExpandableComments ) |
|
|
: size( allExpandableComments ); |
|
|
|
|
|
|
|
|
const uniqueAuthors = uniqBy( map( expandableComments, 'author' ), 'avatar_URL' ); |
|
|
const uniqueAuthorsCount = size( uniqueAuthors ); |
|
|
const lastAuthorName = get( last( uniqueAuthors ), 'name' ); |
|
|
|
|
|
return ( |
|
|
<div className="conversation-caterpillar"> |
|
|
<GravatarCaterpillar |
|
|
users={ uniqueAuthors } |
|
|
onClick={ this.handleTickle } |
|
|
maxGravatarsToDisplay={ MAX_GRAVATARS_TO_DISPLAY } |
|
|
/> |
|
|
<button |
|
|
className="conversation-caterpillar__count" |
|
|
onClick={ this.handleTickle } |
|
|
title={ |
|
|
commentCount > 0 && |
|
|
translate( |
|
|
'View %(count)s comment for this post', |
|
|
'View %(count)s comments for this post', |
|
|
{ |
|
|
count: +commentCount, |
|
|
args: { |
|
|
count: commentCount, |
|
|
}, |
|
|
} |
|
|
) |
|
|
} |
|
|
> |
|
|
{ commentCount > 1 && |
|
|
uniqueAuthorsCount > 1 && |
|
|
translate( 'Load previous comments from %(commenterName)s and others', { |
|
|
args: { |
|
|
commenterName: lastAuthorName, |
|
|
count: commentCount, |
|
|
}, |
|
|
} ) } |
|
|
{ commentCount > 1 && |
|
|
uniqueAuthorsCount === 1 && |
|
|
translate( 'Load previous comments from %(commenterName)s', { |
|
|
args: { |
|
|
commenterName: lastAuthorName, |
|
|
count: commentCount, |
|
|
}, |
|
|
} ) } |
|
|
{ commentCount === 1 && |
|
|
translate( 'Load previous comment from %(commenterName)s', { |
|
|
args: { |
|
|
commenterName: lastAuthorName, |
|
|
}, |
|
|
} ) } |
|
|
</button> |
|
|
</div> |
|
|
); |
|
|
} |
|
|
} |
|
|
|
|
|
export const ConversationCaterpillar = localize( ConversationCaterpillarComponent ); |
|
|
|
|
|
const ConnectedConversationCaterpillar = connect( |
|
|
( state, ownProps ) => { |
|
|
const { blogId, postId } = ownProps; |
|
|
return { |
|
|
comments: getDateSortedPostComments( state, blogId, postId ), |
|
|
commentsTree: getPostCommentsTree( state, blogId, postId, 'all' ), |
|
|
}; |
|
|
}, |
|
|
{ expandComments, recordReaderTracksEvent } |
|
|
)( ConversationCaterpillar ); |
|
|
|
|
|
export default ConnectedConversationCaterpillar; |
|
|
|