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