2017-06-06 23:19:12 +02:00
|
|
|
import React from "react";
|
|
|
|
import { connect } from "react-redux";
|
|
|
|
import { doCloseModal } from "actions/app";
|
2017-05-11 02:59:47 +02:00
|
|
|
import {
|
|
|
|
doSendDraftTransaction,
|
|
|
|
doSetDraftTransactionAmount,
|
|
|
|
doSetDraftTransactionAddress,
|
2017-06-06 23:19:12 +02:00
|
|
|
} from "actions/wallet";
|
|
|
|
import { selectCurrentModal } from "selectors/app";
|
2017-05-11 02:59:47 +02:00
|
|
|
import {
|
|
|
|
selectDraftTransactionAmount,
|
|
|
|
selectDraftTransactionAddress,
|
2017-06-06 23:19:12 +02:00
|
|
|
} from "selectors/wallet";
|
2017-05-11 02:59:47 +02:00
|
|
|
|
2017-06-06 23:19:12 +02:00
|
|
|
import WalletSend from "./view";
|
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
|
|
|
modal: selectCurrentModal(state),
|
|
|
|
address: selectDraftTransactionAddress(state),
|
|
|
|
amount: selectDraftTransactionAmount(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-05-11 02:59:47 +02:00
|
|
|
closeModal: () => dispatch(doCloseModal()),
|
|
|
|
sendToAddress: () => dispatch(doSendDraftTransaction()),
|
2017-06-06 23:19:12 +02:00
|
|
|
setAmount: event => dispatch(doSetDraftTransactionAmount(event.target.value)),
|
|
|
|
setAddress: event =>
|
|
|
|
dispatch(doSetDraftTransactionAddress(event.target.value)),
|
2017-06-06 06:21:55 +02:00
|
|
|
});
|
2017-05-11 02:59:47 +02:00
|
|
|
|
2017-06-06 06:21:55 +02:00
|
|
|
export default connect(select, perform)(WalletSend);
|