2019-05-17 14:21:07 -04:00
|
|
|
import { connect } from 'react-redux';
|
2021-03-10 13:34:21 -05:00
|
|
|
import {
|
2021-11-11 12:48:10 +08:00
|
|
|
selectClaimForUri,
|
|
|
|
selectClaimIsMine,
|
2021-11-08 14:27:14 +08:00
|
|
|
selectHasChannels,
|
2021-03-10 13:34:21 -05:00
|
|
|
selectFetchingMyChannels,
|
2021-10-11 11:56:07 -05:00
|
|
|
makeSelectTagInClaimOrChannelForUri,
|
2021-10-17 16:36:14 +08:00
|
|
|
} from 'redux/selectors/claims';
|
2021-10-28 17:25:34 -03:00
|
|
|
import { CommentCreate } from './view';
|
|
|
|
import { DISABLE_SUPPORT_TAG } from 'constants/tags';
|
2021-08-27 09:03:29 -03:00
|
|
|
import { doCommentCreate, doFetchCreatorSettings, doCommentById } from 'redux/actions/comments';
|
2021-10-28 17:25:34 -03:00
|
|
|
import { doSendTip, doSendCashTip } from 'redux/actions/wallet';
|
|
|
|
import { doToast } from 'redux/actions/notifications';
|
2021-02-09 11:05:56 -05:00
|
|
|
import { selectActiveChannelClaim } from 'redux/selectors/app';
|
2021-07-29 22:53:36 +08:00
|
|
|
import { selectSettingsByChannelId } from 'redux/selectors/comments';
|
2019-05-17 14:21:07 -04:00
|
|
|
|
2021-11-11 12:48:10 +08: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 14:21:07 -04:00
|
|
|
|
2020-09-09 14:53:31 -04:00
|
|
|
const perform = (dispatch, ownProps) => ({
|
2021-10-28 17:25:34 -03:00
|
|
|
createComment: (comment, claimId, parentId, txid, payment_intent_id, environment, sticker) =>
|
2021-07-29 22:53:36 +08:00
|
|
|
dispatch(
|
|
|
|
doCommentCreate(
|
|
|
|
comment,
|
|
|
|
claimId,
|
|
|
|
parentId,
|
|
|
|
ownProps.uri,
|
2021-12-09 10:15:00 -03:00
|
|
|
ownProps.isLivestream,
|
2021-07-29 22:53:36 +08:00
|
|
|
txid,
|
|
|
|
payment_intent_id,
|
2021-10-28 17:25:34 -03:00
|
|
|
environment,
|
|
|
|
sticker
|
2021-07-29 22:53:36 +08:00
|
|
|
)
|
|
|
|
),
|
|
|
|
doFetchCreatorSettings: (channelClaimId) => dispatch(doFetchCreatorSettings(channelClaimId)),
|
2021-10-28 17:25:34 -03:00
|
|
|
doToast: (options) => dispatch(doToast(options)),
|
2021-08-27 09:03:29 -03:00
|
|
|
fetchComment: (commentId) => dispatch(doCommentById(commentId, false)),
|
2021-10-28 17:25:34 -03: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 14:21:07 -04:00
|
|
|
});
|
|
|
|
|
2020-03-20 15:09:45 -04:00
|
|
|
export default connect(select, perform)(CommentCreate);
|