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