2017-06-06 17:19:12 -04:00
|
|
|
import React from "react";
|
|
|
|
import { connect } from "react-redux";
|
2017-05-10 20:59:47 -04:00
|
|
|
import {
|
|
|
|
doSendDraftTransaction,
|
|
|
|
doSetDraftTransactionAmount,
|
|
|
|
doSetDraftTransactionAddress,
|
2017-06-06 17:19:12 -04:00
|
|
|
} from "actions/wallet";
|
2017-05-10 20:59:47 -04:00
|
|
|
import {
|
|
|
|
selectDraftTransactionAmount,
|
|
|
|
selectDraftTransactionAddress,
|
2017-09-01 02:14:38 -04:00
|
|
|
selectDraftTransactionError,
|
2017-06-06 17:19:12 -04:00
|
|
|
} from "selectors/wallet";
|
2017-05-10 20:59:47 -04:00
|
|
|
|
2017-06-06 17:19:12 -04:00
|
|
|
import WalletSend from "./view";
|
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
|
|
|
address: selectDraftTransactionAddress(state),
|
|
|
|
amount: selectDraftTransactionAmount(state),
|
2017-09-01 02:14:38 -04:00
|
|
|
error: selectDraftTransactionError(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-05-10 20:59:47 -04:00
|
|
|
sendToAddress: () => dispatch(doSendDraftTransaction()),
|
2017-06-06 17:19:12 -04:00
|
|
|
setAmount: event => dispatch(doSetDraftTransactionAmount(event.target.value)),
|
|
|
|
setAddress: event =>
|
|
|
|
dispatch(doSetDraftTransactionAddress(event.target.value)),
|
2017-06-05 21:21:55 -07:00
|
|
|
});
|
2017-05-10 20:59:47 -04:00
|
|
|
|
2017-06-05 21:21:55 -07:00
|
|
|
export default connect(select, perform)(WalletSend);
|