2017-12-21 22:08:54 +01:00
|
|
|
import { connect } from 'react-redux';
|
2020-04-23 18:44:18 +02:00
|
|
|
import {
|
|
|
|
doSendTip,
|
|
|
|
makeSelectTitleForUri,
|
|
|
|
makeSelectClaimForUri,
|
|
|
|
selectIsSendingSupport,
|
|
|
|
selectBalance,
|
2020-04-25 01:53:57 +02:00
|
|
|
SETTINGS,
|
2020-04-23 18:44:18 +02:00
|
|
|
} from 'lbry-redux';
|
2018-04-04 01:58:58 +02:00
|
|
|
import WalletSendTip from './view';
|
2020-04-23 10:18:17 +02:00
|
|
|
import { doOpenModal } from 'redux/actions/app';
|
|
|
|
import { withRouter } from 'react-router';
|
2020-04-25 01:53:57 +02:00
|
|
|
import { makeSelectClientSetting } from 'redux/selectors/settings';
|
2017-09-17 22:33:52 +02:00
|
|
|
|
|
|
|
const select = (state, props) => ({
|
|
|
|
isPending: selectIsSendingSupport(state),
|
|
|
|
title: makeSelectTitleForUri(props.uri)(state),
|
2020-02-12 19:59:48 +01:00
|
|
|
claim: makeSelectClaimForUri(props.uri, false)(state),
|
2018-05-14 18:19:07 +02:00
|
|
|
balance: selectBalance(state),
|
2020-04-25 01:53:57 +02:00
|
|
|
instantTipEnabled: makeSelectClientSetting(SETTINGS.INSTANT_PURCHASE_ENABLED)(state),
|
|
|
|
instantTipMax: makeSelectClientSetting(SETTINGS.INSTANT_PURCHASE_MAX)(state),
|
2017-09-17 22:33:52 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
const perform = dispatch => ({
|
2020-04-23 10:18:17 +02:00
|
|
|
openModal: (modal, props) => dispatch(doOpenModal(modal, props)),
|
2020-04-23 18:44:18 +02:00
|
|
|
sendSupport: (amount, claimId, isSupport) => dispatch(doSendTip(amount, claimId, isSupport)),
|
2017-09-17 22:33:52 +02:00
|
|
|
});
|
|
|
|
|
2020-04-23 10:18:17 +02:00
|
|
|
export default withRouter(connect(select, perform)(WalletSendTip));
|