lbry-desktop/ui/component/commentReactions/index.js

24 lines
842 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
import Comment from './view';
2020-10-27 17:24:31 +01:00
import { makeSelectClaimIsMine, makeSelectClaimForUri } from 'lbry-redux';
2020-10-20 05:20:38 +02:00
import {
makeSelectMyReactionsForComment,
makeSelectOthersReactionsForComment,
selectCommentChannel,
} from 'redux/selectors/comments';
2020-09-29 16:10:23 +02:00
import { doCommentReact } from 'redux/actions/comments';
2020-09-29 16:10:23 +02:00
const select = (state, props) => ({
2020-10-27 17:24:31 +01:00
claim: makeSelectClaimForUri(props.uri)(state),
claimIsMine: makeSelectClaimIsMine(props.uri)(state),
2020-09-29 16:10:23 +02:00
myReacts: makeSelectMyReactionsForComment(props.commentId)(state),
othersReacts: makeSelectOthersReactionsForComment(props.commentId)(state),
2020-10-20 05:20:38 +02:00
activeChannel: selectCommentChannel(state),
2020-09-29 16:10:23 +02:00
});
2020-09-29 16:10:23 +02:00
const perform = dispatch => ({
react: (commentId, type) => dispatch(doCommentReact(commentId, type)),
});
export default connect(select, perform)(Comment);