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

21 lines
624 B
JavaScript
Raw Normal View History

2017-06-06 23:19:12 +02:00
import React from "react";
import { connect } from "react-redux";
2017-11-13 22:02:23 +01:00
import { doCheckAddressIsMine, doGetNewAddress } from "redux/actions/wallet";
import {
selectReceiveAddress,
2017-06-06 23:19:12 +02:00
selectGettingNewAddress,
2017-11-13 22:02:23 +01:00
} from "redux/selectors/wallet";
2017-08-18 05:31:44 +02:00
import WalletAddress from "./view";
2017-06-06 06:21:55 +02:00
const select = state => ({
receiveAddress: selectReceiveAddress(state),
gettingNewAddress: selectGettingNewAddress(state),
2017-06-06 06:21:55 +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)),
getNewAddress: () => dispatch(doGetNewAddress()),
2017-06-06 06:21:55 +02:00
});
2017-08-18 05:31:44 +02:00
export default connect(select, perform)(WalletAddress);