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

48 lines
1.8 KiB
JavaScript
Raw Normal View History

2019-05-17 20:21:07 +02:00
import { connect } from 'react-redux';
import {
makeSelectClaimForUri,
makeSelectClaimIsMine,
selectMyChannelClaims,
selectFetchingMyChannels,
2021-10-11 18:56:07 +02:00
makeSelectTagInClaimOrChannelForUri,
} from 'redux/selectors/claims';
import { doSendTip } from 'redux/actions/wallet';
2021-08-27 14:03:29 +02:00
import { doCommentCreate, doFetchCreatorSettings, doCommentById } from 'redux/actions/comments';
import { selectActiveChannelClaim } from 'redux/selectors/app';
import { selectSettingsByChannelId } from 'redux/selectors/comments';
2020-10-07 21:14:52 +02:00
import { CommentCreate } from './view';
import { doToast } from 'redux/actions/notifications';
2021-10-12 02:13:38 +02:00
import { DISABLE_SUPPORT_TAG } from 'constants/tags';
2019-05-17 20:21:07 +02: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 18:56:07 +02:00
supportDisabled: makeSelectTagInClaimOrChannelForUri(props.uri, DISABLE_SUPPORT_TAG)(state),
2019-05-17 20:21:07 +02:00
});
const perform = (dispatch, ownProps) => ({
createComment: (comment, claimId, parentId, txid, payment_intent_id, environment) =>
dispatch(
doCommentCreate(
comment,
claimId,
parentId,
ownProps.uri,
ownProps.livestream,
txid,
payment_intent_id,
environment
)
),
2021-04-23 21:59:48 +02: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 14:03:29 +02:00
fetchComment: (commentId) => dispatch(doCommentById(commentId, false)),
2019-05-17 20:21:07 +02:00
});
2020-03-20 20:09:45 +01:00
export default connect(select, perform)(CommentCreate);