2017-12-21 22:08:54 +01:00
|
|
|
import { connect } from 'react-redux';
|
2019-05-07 23:38:29 +02:00
|
|
|
import { doCheckAddressIsMine, doGetNewAddress, selectReceiveAddress, selectGettingNewAddress } from 'lbry-redux';
|
2017-12-21 22:08:54 +01:00
|
|
|
import WalletAddress from './view';
|
2019-10-30 07:07:30 +01:00
|
|
|
import { withRouter } from 'react-router';
|
2017-05-11 02:59:47 +02:00
|
|
|
|
2017-06-06 06:21:55 +02:00
|
|
|
const select = state => ({
|
2017-05-11 02:59:47 +02:00
|
|
|
receiveAddress: selectReceiveAddress(state),
|
|
|
|
gettingNewAddress: selectGettingNewAddress(state),
|
2017-06-06 06:21:55 +02:00
|
|
|
});
|
2017-05-11 02:59:47 +02:00
|
|
|
|
2017-06-06 06:21:55 +02:00
|
|
|
const perform = dispatch => ({
|
2017-06-06 23:19:12 +02:00
|
|
|
checkAddressIsMine: address => dispatch(doCheckAddressIsMine(address)),
|
2017-05-11 02:59:47 +02:00
|
|
|
getNewAddress: () => dispatch(doGetNewAddress()),
|
2017-06-06 06:21:55 +02:00
|
|
|
});
|
2017-05-11 02:59:47 +02:00
|
|
|
|
2019-10-30 07:07:30 +01:00
|
|
|
export default withRouter(
|
|
|
|
connect(
|
|
|
|
select,
|
|
|
|
perform
|
|
|
|
)(WalletAddress)
|
|
|
|
);
|