File size: 2,299 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 |
import { omit } from 'lodash';
import PropTypes from 'prop-types';
import { Component, Fragment } from 'react';
import { connect } from 'react-redux';
import QueryPostLikes from 'calypso/components/data/query-post-likes';
import { isUserLoggedIn } from 'calypso/state/current-user/selectors';
import { like, unlike } from 'calypso/state/posts/likes/actions';
import { getPostLikeCount } from 'calypso/state/posts/selectors/get-post-like-count';
import { isLikedPost } from 'calypso/state/posts/selectors/is-liked-post';
import { registerLastActionRequiresLogin } from 'calypso/state/reader-ui/actions';
import LikeButton from './button';
const noop = () => {};
class LikeButtonContainer extends Component {
static propTypes = {
siteId: PropTypes.number.isRequired,
postId: PropTypes.number.isRequired,
showZeroCount: PropTypes.bool,
tagName: PropTypes.string,
onLikeToggle: PropTypes.func,
found: PropTypes.number,
iLike: PropTypes.bool,
likeSource: PropTypes.string,
icon: PropTypes.object,
};
static defaultProps = {
onLikeToggle: noop,
};
handleLikeToggle = ( liked ) => {
if ( ! this.props.isLoggedIn ) {
return this.props.registerLastActionRequiresLogin( {
type: liked ? 'like' : 'unlike',
siteId: this.props.siteId,
postId: this.props.postId,
} );
}
const toggler = liked ? this.props.like : this.props.unlike;
toggler( this.props.siteId, this.props.postId, { source: this.props.likeSource } );
this.props.onLikeToggle( liked );
};
render() {
const props = omit( this.props, [
'siteId',
'postId',
'likeCount',
'iLike',
'like',
'unlike',
] );
return (
<Fragment>
<QueryPostLikes siteId={ this.props.siteId } postId={ this.props.postId } />
<LikeButton
{ ...props }
likeCount={ this.props.likeCount }
liked={ this.props.iLike }
animateLike
onLikeToggle={ this.handleLikeToggle }
icon={ this.props.icon }
/>
</Fragment>
);
}
}
export default connect(
( state, { siteId, postId } ) => {
return {
likeCount: getPostLikeCount( state, siteId, postId ),
iLike: isLikedPost( state, siteId, postId ),
isLoggedIn: isUserLoggedIn( state ),
};
},
{ like, unlike, registerLastActionRequiresLogin },
null,
{ forwardRef: true }
)( LikeButtonContainer );
|