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

59 lines
1.9 KiB
JavaScript
Raw Normal View History

2019-05-17 20:21:07 +02:00
import { connect } from 'react-redux';
import {
selectClaimForUri,
selectClaimIsMine,
selectHasChannels,
selectFetchingMyChannels,
2021-10-11 18:56:07 +02:00
makeSelectTagInClaimOrChannelForUri,
} from 'redux/selectors/claims';
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';
import { doSendTip, doSendCashTip } from 'redux/actions/wallet';
import { doToast } from 'redux/actions/notifications';
import { selectActiveChannelClaim } from 'redux/selectors/app';
import { selectSettingsByChannelId } from 'redux/selectors/comments';
2022-02-07 19:03:10 +01:00
import { getChannelIdFromClaim } from 'util/claim';
2022-02-02 17:20:10 +01:00
import { doOpenModal } from 'redux/actions/app';
2019-05-17 20:21:07 +02:00
const select = (state, props) => {
2022-02-07 19:03:10 +01:00
const { uri } = props;
const claim = selectClaimForUri(state, uri);
const { claim_id: claimId, name, signing_channel: channel } = claim || {};
// setup variables for tip API
const channelClaimId = getChannelIdFromClaim(claim);
const tipChannelName = channel ? channel.name : name;
const activeChannelClaim = selectActiveChannelClaim(state);
const { claim_id: activeChannelClaimId, name: activeChannelName, canonical_url: activeChannelUrl } =
activeChannelClaim || {};
return {
2022-02-07 19:03:10 +01:00
activeChannelClaimId,
activeChannelName,
activeChannelUrl,
hasChannels: selectHasChannels(state),
2022-02-07 19:03:10 +01:00
claimId,
channelClaimId,
tipChannelName,
claimIsMine: selectClaimIsMine(state, claim),
isFetchingChannels: selectFetchingMyChannels(state),
settingsByChannelId: selectSettingsByChannelId(state),
2022-02-07 19:03:10 +01:00
supportDisabled: makeSelectTagInClaimOrChannelForUri(uri, DISABLE_SUPPORT_TAG)(state),
};
};
2019-05-17 20:21:07 +02:00
2022-02-07 19:03:10 +01:00
const perform = {
doCommentCreate,
doFetchCreatorSettings,
doToast,
doCommentById,
doSendCashTip,
doSendTip,
doOpenModal,
};
2019-05-17 20:21:07 +02:00
2020-03-20 20:09:45 +01:00
export default connect(select, perform)(CommentCreate);