|
|
import config from '@automattic/calypso-config'; |
|
|
import { getUrlParts } from '@automattic/calypso-url'; |
|
|
import { isMobile } from '@automattic/viewport'; |
|
|
import { createRef, Component, Fragment } from 'react'; |
|
|
import { connect } from 'react-redux'; |
|
|
import LikeButtonContainer from 'calypso/blocks/like-button'; |
|
|
import PostLikesPopover from 'calypso/blocks/post-likes/popover'; |
|
|
import QueryPostLikes from 'calypso/components/data/query-post-likes'; |
|
|
import { navigate } from 'calypso/lib/navigate'; |
|
|
import { createAccountUrl } from 'calypso/lib/paths'; |
|
|
import isReaderTagEmbedPage from 'calypso/lib/reader/is-reader-tag-embed-page'; |
|
|
import ReaderLikeIcon from 'calypso/reader/components/icons/like-icon'; |
|
|
import { recordAction, recordGaEvent, recordTrackForPost } from 'calypso/reader/stats'; |
|
|
import { isUserLoggedIn } from 'calypso/state/current-user/selectors'; |
|
|
import { getPostLikeCount } from 'calypso/state/posts/selectors/get-post-like-count'; |
|
|
import { isLikedPost } from 'calypso/state/posts/selectors/is-liked-post'; |
|
|
import { markPostSeen } from 'calypso/state/reader/posts/actions'; |
|
|
import { getPostByKey } from 'calypso/state/reader/posts/selectors'; |
|
|
|
|
|
import './style.scss'; |
|
|
|
|
|
class ReaderLikeButton extends Component { |
|
|
state = { |
|
|
showLikesPopover: false, |
|
|
}; |
|
|
|
|
|
hidePopoverTimeout = null; |
|
|
likeButtonRef = createRef(); |
|
|
|
|
|
componentWillUnmount() { |
|
|
clearTimeout( this.hidePopoverTimeout ); |
|
|
} |
|
|
|
|
|
onLikeToggle = ( liked ) => { |
|
|
if ( this.props.isLoggedIn ) { |
|
|
return this.recordLikeToggle( liked ); |
|
|
} |
|
|
|
|
|
const { pathname } = getUrlParts( window.location.href ); |
|
|
if ( isReaderTagEmbedPage( window.location ) ) { |
|
|
return window.open( |
|
|
createAccountUrl( { redirectTo: pathname, ref: 'reader-lp' } ), |
|
|
'_blank' |
|
|
); |
|
|
} |
|
|
|
|
|
if ( ! config.isEnabled( 'reader/login-window' ) ) { |
|
|
return navigate( createAccountUrl( { redirectTo: pathname, ref: 'reader-lp' } ) ); |
|
|
} |
|
|
}; |
|
|
|
|
|
recordLikeToggle = ( liked ) => { |
|
|
const post = this.props.post || this.props.postByKey; |
|
|
|
|
|
recordAction( liked ? 'liked_post' : 'unliked_post' ); |
|
|
recordGaEvent( liked ? 'Clicked Like Post' : 'Clicked Unlike Post' ); |
|
|
recordTrackForPost( |
|
|
liked ? 'calypso_reader_article_liked' : 'calypso_reader_article_unliked', |
|
|
post, |
|
|
{ context: this.props.fullPost ? 'full-post' : 'card' } |
|
|
); |
|
|
if ( liked && ! this.props.fullPost && ! post._seen ) { |
|
|
this.props.markPostSeen( post, this.props.site ); |
|
|
} |
|
|
}; |
|
|
|
|
|
showLikesPopover = () => { |
|
|
if ( isMobile() ) { |
|
|
return; |
|
|
} |
|
|
clearTimeout( this.hidePopoverTimeout ); |
|
|
this.setState( { showLikesPopover: true } ); |
|
|
}; |
|
|
|
|
|
hideLikesPopover = () => { |
|
|
if ( isMobile() ) { |
|
|
return; |
|
|
} |
|
|
this.hidePopoverTimeout = setTimeout( () => { |
|
|
this.setState( { showLikesPopover: false } ); |
|
|
}, 200 ); |
|
|
}; |
|
|
|
|
|
render() { |
|
|
const { siteId, postId, likeCount, iLike, iconSize } = this.props; |
|
|
const { showLikesPopover } = this.state; |
|
|
const hasEnoughLikes = ( likeCount > 0 && ! iLike ) || ( likeCount > 1 && iLike ); |
|
|
|
|
|
const likeIcon = ReaderLikeIcon( { |
|
|
liked: iLike, |
|
|
iconSize: iconSize, |
|
|
} ); |
|
|
|
|
|
return ( |
|
|
<Fragment> |
|
|
<QueryPostLikes siteId={ siteId } postId={ postId } /> |
|
|
<LikeButtonContainer |
|
|
{ ...this.props } |
|
|
ref={ this.likeButtonRef } |
|
|
onMouseEnter={ this.showLikesPopover } |
|
|
onMouseLeave={ this.hideLikesPopover } |
|
|
onLikeToggle={ this.onLikeToggle } |
|
|
likeSource="reader" |
|
|
icon={ likeIcon } |
|
|
/> |
|
|
{ showLikesPopover && siteId && postId && hasEnoughLikes && ( |
|
|
<PostLikesPopover |
|
|
className="reader-likes-popover ignore-click" // eslint-disable-line wpcalypso/jsx-classname-namespace |
|
|
onMouseEnter={ this.showLikesPopover } |
|
|
onMouseLeave={ this.hideLikesPopover } |
|
|
siteId={ siteId } |
|
|
postId={ postId } |
|
|
showDisplayNames |
|
|
context={ this.likeButtonRef.current } |
|
|
/> |
|
|
) } |
|
|
</Fragment> |
|
|
); |
|
|
} |
|
|
} |
|
|
|
|
|
export default connect( |
|
|
( state, { siteId, postId } ) => { |
|
|
return { |
|
|
postByKey: getPostByKey( state, { |
|
|
blogId: siteId, |
|
|
postId, |
|
|
} ), |
|
|
likeCount: getPostLikeCount( state, siteId, postId ), |
|
|
iLike: isLikedPost( state, siteId, postId ), |
|
|
isLoggedIn: isUserLoggedIn( state ), |
|
|
}; |
|
|
}, |
|
|
{ markPostSeen } |
|
|
)( ReaderLikeButton ); |
|
|
|