2019-05-17 20:21:07 +02:00
|
|
|
import { connect } from 'react-redux';
|
2021-03-10 19:34:21 +01:00
|
|
|
import {
|
|
|
|
makeSelectClaimForUri,
|
|
|
|
makeSelectClaimIsMine,
|
|
|
|
selectMyChannelClaims,
|
|
|
|
selectFetchingMyChannels,
|
2021-04-23 21:59:48 +02:00
|
|
|
doSendTip,
|
2021-03-10 19:34:21 +01:00
|
|
|
} from 'lbry-redux';
|
2021-02-09 17:05:56 +01:00
|
|
|
import { doOpenModal, doSetActiveChannel } from 'redux/actions/app';
|
|
|
|
import { doCommentCreate } from 'redux/actions/comments';
|
2020-06-15 22:33:03 +02:00
|
|
|
import { selectUserVerifiedEmail } from 'redux/selectors/user';
|
2021-02-09 17:05:56 +01:00
|
|
|
import { selectActiveChannelClaim } from 'redux/selectors/app';
|
2021-06-03 07:57:50 +02:00
|
|
|
import { makeSelectCommentsDisabledForUri } from 'redux/selectors/comments';
|
2020-10-07 21:14:52 +02:00
|
|
|
import { CommentCreate } from './view';
|
2021-07-06 22:28:29 +02:00
|
|
|
import { doToast } from 'redux/actions/notifications';
|
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,
|
2021-06-03 07:57:50 +02:00
|
|
|
commentsDisabledBySettings: makeSelectCommentsDisabledForUri(props.uri)(state),
|
2019-05-17 20:21:07 +02:00
|
|
|
claim: makeSelectClaimForUri(props.uri)(state),
|
2020-03-02 21:41:11 +01:00
|
|
|
channels: selectMyChannelClaims(state),
|
2020-10-06 21:35:13 +02:00
|
|
|
isFetchingChannels: selectFetchingMyChannels(state),
|
2021-02-09 17:05:56 +01:00
|
|
|
activeChannelClaim: selectActiveChannelClaim(state),
|
2021-03-10 19:34:21 +01:00
|
|
|
claimIsMine: makeSelectClaimIsMine(props.uri)(state),
|
2019-05-17 20:21:07 +02:00
|
|
|
});
|
|
|
|
|
2020-09-09 20:53:31 +02:00
|
|
|
const perform = (dispatch, ownProps) => ({
|
2021-07-06 22:28:29 +02:00
|
|
|
createComment: (comment, claimId, parentId, txid, payment_intent_id, environment) =>
|
|
|
|
dispatch(doCommentCreate(comment, claimId, parentId, ownProps.uri, ownProps.livestream, txid, payment_intent_id, environment)),
|
2019-11-14 21:02:15 +01:00
|
|
|
openModal: (modal, props) => dispatch(doOpenModal(modal, props)),
|
2021-03-10 19:34:21 +01:00
|
|
|
setActiveChannel: (claimId) => dispatch(doSetActiveChannel(claimId)),
|
2021-04-23 21:59:48 +02:00
|
|
|
sendTip: (params, callback, errorCallback) => dispatch(doSendTip(params, false, callback, errorCallback, false)),
|
2021-07-06 22:28:29 +02:00
|
|
|
doToast: (options) => dispatch(doToast(options)),
|
2019-05-17 20:21:07 +02:00
|
|
|
});
|
|
|
|
|
2020-03-20 20:09:45 +01:00
|
|
|
export default connect(select, perform)(CommentCreate);
|