2019-05-17 20:21:07 +02:00
|
|
|
import { connect } from 'react-redux';
|
2021-03-10 19:34:21 +01:00
|
|
|
import {
|
2021-12-31 18:52:26 +01:00
|
|
|
selectClaimForUri,
|
|
|
|
selectClaimIsMine,
|
|
|
|
selectHasChannels,
|
2021-03-10 19:34:21 +01:00
|
|
|
selectFetchingMyChannels,
|
2021-10-12 21:39:49 +02:00
|
|
|
makeSelectTagInClaimOrChannelForUri,
|
2021-10-08 05:47:39 +02:00
|
|
|
} from 'redux/selectors/claims';
|
2022-01-24 17:07:09 +01: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';
|
2022-01-24 17:07:09 +01:00
|
|
|
import { doSendTip } 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-12-31 18:52:26 +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) => ({
|
2022-01-24 17:07:09 +01:00
|
|
|
createComment: (comment, claimId, parentId, txid, payment_intent_id, environment, sticker) =>
|
|
|
|
dispatch(doCommentCreate(comment, claimId, parentId, ownProps.uri, txid, payment_intent_id, environment, sticker)),
|
2021-07-29 16:53:36 +02:00
|
|
|
doFetchCreatorSettings: (channelClaimId) => dispatch(doFetchCreatorSettings(channelClaimId)),
|
2022-01-24 17:07:09 +01:00
|
|
|
doToast: (options) => dispatch(doToast(options)),
|
2021-08-27 14:03:29 +02:00
|
|
|
fetchComment: (commentId) => dispatch(doCommentById(commentId, false)),
|
2022-01-24 17:07:09 +01:00
|
|
|
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);
|