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

26 lines
1.2 KiB
JavaScript
Raw Normal View History

2019-05-17 20:21:07 +02:00
import { connect } from 'react-redux';
import { makeSelectClaimForUri, selectMyChannelClaims, selectFetchingMyChannels } from 'lbry-redux';
2020-10-20 05:20:38 +02:00
import { selectIsPostingComment, selectCommentChannel } from 'redux/selectors/comments';
2019-11-14 21:02:15 +01:00
import { doOpenModal } from 'redux/actions/app';
2020-10-20 05:20:38 +02:00
import { doCommentCreate, doSetCommentChannel } from 'redux/actions/comments';
import { selectUserVerifiedEmail } from 'redux/selectors/user';
2020-10-07 21:14:52 +02:00
import { CommentCreate } from './view';
2019-05-17 20:21:07 +02:00
const select = (state, props) => ({
2019-11-14 21:02:15 +01:00
commentingEnabled: IS_WEB ? Boolean(selectUserVerifiedEmail(state)) : true,
2019-05-17 20:21:07 +02:00
claim: makeSelectClaimForUri(props.uri)(state),
channels: selectMyChannelClaims(state),
isFetchingChannels: selectFetchingMyChannels(state),
2020-10-07 21:14:52 +02:00
isPostingComment: selectIsPostingComment(state),
2020-10-20 05:20:38 +02:00
activeChannel: selectCommentChannel(state),
2019-05-17 20:21:07 +02:00
});
const perform = (dispatch, ownProps) => ({
2020-03-20 20:09:45 +01:00
createComment: (comment, claimId, channel, parentId) =>
dispatch(doCommentCreate(comment, claimId, channel, parentId, ownProps.uri)),
2019-11-14 21:02:15 +01:00
openModal: (modal, props) => dispatch(doOpenModal(modal, props)),
2020-10-20 05:20:38 +02:00
setCommentChannel: name => dispatch(doSetCommentChannel(name)),
2019-05-17 20:21:07 +02:00
});
2020-03-20 20:09:45 +01:00
export default connect(select, perform)(CommentCreate);