lbry-desktop/ui/component/commentCreate/index.js

37 lines
1.7 KiB
JavaScript
Raw Normal View History

2019-05-17 14:21:07 -04:00
import { connect } from 'react-redux';
import {
makeSelectClaimForUri,
makeSelectClaimIsMine,
selectMyChannelClaims,
selectFetchingMyChannels,
2021-10-12 15:39:49 -04:00
makeSelectTagInClaimOrChannelForUri,
} from 'redux/selectors/claims';
import { doSendTip } from 'redux/actions/wallet';
2021-08-27 09:03:29 -03:00
import { doCommentCreate, doFetchCreatorSettings, doCommentById } from 'redux/actions/comments';
import { selectActiveChannelClaim } from 'redux/selectors/app';
import { selectSettingsByChannelId } from 'redux/selectors/comments';
2020-10-07 15:14:52 -04:00
import { CommentCreate } from './view';
import { doToast } from 'redux/actions/notifications';
2021-10-11 19:13:38 -05:00
import { DISABLE_SUPPORT_TAG } from 'constants/tags';
2019-05-17 14:21:07 -04:00
const select = (state, props) => ({
claim: makeSelectClaimForUri(props.uri)(state),
channels: selectMyChannelClaims(state),
isFetchingChannels: selectFetchingMyChannels(state),
activeChannelClaim: selectActiveChannelClaim(state),
claimIsMine: makeSelectClaimIsMine(props.uri)(state),
settingsByChannelId: selectSettingsByChannelId(state),
2021-10-11 11:56:07 -05:00
supportDisabled: makeSelectTagInClaimOrChannelForUri(props.uri, DISABLE_SUPPORT_TAG)(state),
2019-05-17 14:21:07 -04:00
});
const perform = (dispatch, ownProps) => ({
createComment: (comment, claimId, parentId, txid, payment_intent_id, environment) =>
2021-10-19 00:49:51 -04:00
dispatch(doCommentCreate(comment, claimId, parentId, ownProps.uri, txid, payment_intent_id, environment)),
2021-04-23 15:59:48 -04:00
sendTip: (params, callback, errorCallback) => dispatch(doSendTip(params, false, callback, errorCallback, false)),
doToast: (options) => dispatch(doToast(options)),
doFetchCreatorSettings: (channelClaimId) => dispatch(doFetchCreatorSettings(channelClaimId)),
2021-08-27 09:03:29 -03:00
fetchComment: (commentId) => dispatch(doCommentById(commentId, false)),
2019-05-17 14:21:07 -04:00
});
2020-03-20 15:09:45 -04:00
export default connect(select, perform)(CommentCreate);