403321f064
* Refactor filePrice * Refactor Wallet Tip Components * Add backend sticker support for comments * Add stickers * Refactor commentCreate * Add Sticker Selector and sticker comment creation * Add stickers display to comments and hyperchats * Fix wrong checks for total Super Chats
39 lines
1.7 KiB
JavaScript
39 lines
1.7 KiB
JavaScript
import { connect } from 'react-redux';
|
|
import {
|
|
selectClaimForUri,
|
|
selectClaimIsMine,
|
|
selectHasChannels,
|
|
selectFetchingMyChannels,
|
|
makeSelectTagInClaimOrChannelForUri,
|
|
} from 'redux/selectors/claims';
|
|
import { CommentCreate } from './view';
|
|
import { DISABLE_SUPPORT_TAG } from 'constants/tags';
|
|
import { doCommentCreate, doFetchCreatorSettings, doCommentById } from 'redux/actions/comments';
|
|
import { doSendTip } from 'redux/actions/wallet';
|
|
import { doToast } from 'redux/actions/notifications';
|
|
import { selectActiveChannelClaim } from 'redux/selectors/app';
|
|
import { selectSettingsByChannelId } from 'redux/selectors/comments';
|
|
|
|
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),
|
|
};
|
|
};
|
|
|
|
const perform = (dispatch, ownProps) => ({
|
|
createComment: (comment, claimId, parentId, txid, payment_intent_id, environment, sticker) =>
|
|
dispatch(doCommentCreate(comment, claimId, parentId, ownProps.uri, txid, payment_intent_id, environment, sticker)),
|
|
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);
|