49 lines
1.9 KiB
JavaScript
49 lines
1.9 KiB
JavaScript
import { connect } from 'react-redux';
|
|
import {
|
|
makeSelectClaimForUri,
|
|
makeSelectClaimIsMine,
|
|
selectMyChannelClaims,
|
|
selectFetchingMyChannels,
|
|
doSendTip,
|
|
} from 'lbry-redux';
|
|
import { doOpenModal, doSetActiveChannel } from 'redux/actions/app';
|
|
import { doCommentCreate, doFetchCreatorSettings, doCommentById } from 'redux/actions/comments';
|
|
import { selectUserVerifiedEmail } from 'redux/selectors/user';
|
|
import { selectActiveChannelClaim } from 'redux/selectors/app';
|
|
import { selectSettingsByChannelId } from 'redux/selectors/comments';
|
|
import { CommentCreate } from './view';
|
|
import { doToast } from 'redux/actions/notifications';
|
|
|
|
const select = (state, props) => ({
|
|
commentingEnabled: IS_WEB ? Boolean(selectUserVerifiedEmail(state)) : true,
|
|
claim: makeSelectClaimForUri(props.uri)(state),
|
|
channels: selectMyChannelClaims(state),
|
|
isFetchingChannels: selectFetchingMyChannels(state),
|
|
activeChannelClaim: selectActiveChannelClaim(state),
|
|
claimIsMine: makeSelectClaimIsMine(props.uri)(state),
|
|
settingsByChannelId: selectSettingsByChannelId(state),
|
|
});
|
|
|
|
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
|
|
)
|
|
),
|
|
openModal: (modal, props) => dispatch(doOpenModal(modal, props)),
|
|
setActiveChannel: (claimId) => dispatch(doSetActiveChannel(claimId)),
|
|
sendTip: (params, callback, errorCallback) => dispatch(doSendTip(params, false, callback, errorCallback, false)),
|
|
doToast: (options) => dispatch(doToast(options)),
|
|
doFetchCreatorSettings: (channelClaimId) => dispatch(doFetchCreatorSettings(channelClaimId)),
|
|
fetchComment: (commentId) => dispatch(doCommentById(commentId, false)),
|
|
});
|
|
|
|
export default connect(select, perform)(CommentCreate);
|