2019-05-17 20:21:07 +02:00
|
|
|
import { connect } from 'react-redux';
|
2021-03-10 19:34:21 +01:00
|
|
|
import {
|
2021-11-11 05:48:10 +01:00
|
|
|
selectClaimForUri,
|
|
|
|
selectClaimIsMine,
|
2021-11-08 07:27:14 +01:00
|
|
|
selectHasChannels,
|
2021-03-10 19:34:21 +01:00
|
|
|
selectFetchingMyChannels,
|
2021-10-11 18:56:07 +02:00
|
|
|
makeSelectTagInClaimOrChannelForUri,
|
2021-10-17 10:36:14 +02:00
|
|
|
} from 'redux/selectors/claims';
|
2021-10-28 22:25:34 +02:00
|
|
|
import { CommentCreate } from './view';
|
|
|
|
import { DISABLE_SUPPORT_TAG } from 'constants/tags';
|
2021-08-27 14:03:29 +02:00
|
|
|
import { doCommentCreate, doFetchCreatorSettings, doCommentById } from 'redux/actions/comments';
|
2021-10-28 22:25:34 +02:00
|
|
|
import { doSendTip, doSendCashTip } from 'redux/actions/wallet';
|
|
|
|
import { doToast } from 'redux/actions/notifications';
|
2021-02-09 17:05:56 +01:00
|
|
|
import { selectActiveChannelClaim } from 'redux/selectors/app';
|
2021-07-29 16:53:36 +02:00
|
|
|
import { selectSettingsByChannelId } from 'redux/selectors/comments';
|
2019-05-17 20:21:07 +02:00
|
|
|
|
2021-11-11 05:48:10 +01:00
|
|
|
const select = (state, props) => {
|
|
|
|
const claim = selectClaimForUri(state, props.uri);
|
|
|
|
return {
|
|
|
|
activeChannelClaim: selectActiveChannelClaim(state),
|
|
|
|
hasChannels: selectHasChannels(state),
|
|
|
|
claim,
|
|
|
|
claimIsMine: selectClaimIsMine(state, claim),
|
|
|
|
isFetchingChannels: selectFetchingMyChannels(state),
|
|
|
|
settingsByChannelId: selectSettingsByChannelId(state),
|
|
|
|
supportDisabled: makeSelectTagInClaimOrChannelForUri(props.uri, DISABLE_SUPPORT_TAG)(state),
|
|
|
|
};
|
|
|
|
};
|
2019-05-17 20:21:07 +02:00
|
|
|
|
2020-09-09 20:53:31 +02:00
|
|
|
const perform = (dispatch, ownProps) => ({
|
2021-10-28 22:25:34 +02:00
|
|
|
createComment: (comment, claimId, parentId, txid, payment_intent_id, environment, sticker) =>
|
2021-07-29 16:53:36 +02:00
|
|
|
dispatch(
|
|
|
|
doCommentCreate(
|
|
|
|
comment,
|
|
|
|
claimId,
|
|
|
|
parentId,
|
|
|
|
ownProps.uri,
|
2021-12-09 14:15:00 +01:00
|
|
|
ownProps.isLivestream,
|
2021-07-29 16:53:36 +02:00
|
|
|
txid,
|
|
|
|
payment_intent_id,
|
2021-10-28 22:25:34 +02:00
|
|
|
environment,
|
|
|
|
sticker
|
2021-07-29 16:53:36 +02:00
|
|
|
)
|
|
|
|
),
|
|
|
|
doFetchCreatorSettings: (channelClaimId) => dispatch(doFetchCreatorSettings(channelClaimId)),
|
2021-10-28 22:25:34 +02:00
|
|
|
doToast: (options) => dispatch(doToast(options)),
|
2021-08-27 14:03:29 +02:00
|
|
|
fetchComment: (commentId) => dispatch(doCommentById(commentId, false)),
|
2021-10-28 22:25:34 +02:00
|
|
|
sendCashTip: (tipParams, userParams, claimId, environment, successCallback) =>
|
|
|
|
dispatch(doSendCashTip(tipParams, false, userParams, claimId, environment, successCallback)),
|
|
|
|
sendTip: (params, callback, errorCallback) => dispatch(doSendTip(params, false, callback, errorCallback, false)),
|
2019-05-17 20:21:07 +02:00
|
|
|
});
|
|
|
|
|
2020-03-20 20:09:45 +01:00
|
|
|
export default connect(select, perform)(CommentCreate);
|