de08c04158
Still needs logic to notify the form when there's invalid input Add address validation to Send page Trim address input on Send page Adds trim prop to FormField Improve LBRY address regexp On Send page, don't prevent form submit, and only show error on blur This isn't a full fix (it only handles blur, it's still the form's job to do validation on submit). A proper solution to this (that can generalize to other forms) will probably involve looking at all of the inputs and asking each one whether it has an error, which will require some tricky state management. On Send page, use error message from daemon Update CHANGELOG.md Further improve invalid address regexp - Remove incorrect check for second character - Add "O" to chars excluded from b58 section - Allow for 33-character addresses Don't internationalize daemon error message on Send page remove console, add i18n
33 lines
1,023 B
JavaScript
33 lines
1,023 B
JavaScript
import React from "react";
|
|
import { connect } from "react-redux";
|
|
import { doCloseModal } from "actions/app";
|
|
import {
|
|
doSendDraftTransaction,
|
|
doSetDraftTransactionAmount,
|
|
doSetDraftTransactionAddress,
|
|
} from "actions/wallet";
|
|
import { selectCurrentModal } from "selectors/app";
|
|
import {
|
|
selectDraftTransactionAmount,
|
|
selectDraftTransactionAddress,
|
|
selectDraftTransactionError,
|
|
} from "selectors/wallet";
|
|
|
|
import WalletSend from "./view";
|
|
|
|
const select = state => ({
|
|
modal: selectCurrentModal(state),
|
|
address: selectDraftTransactionAddress(state),
|
|
amount: selectDraftTransactionAmount(state),
|
|
error: selectDraftTransactionError(state),
|
|
});
|
|
|
|
const perform = dispatch => ({
|
|
closeModal: () => dispatch(doCloseModal()),
|
|
sendToAddress: () => dispatch(doSendDraftTransaction()),
|
|
setAmount: event => dispatch(doSetDraftTransactionAmount(event.target.value)),
|
|
setAddress: event =>
|
|
dispatch(doSetDraftTransactionAddress(event.target.value)),
|
|
});
|
|
|
|
export default connect(select, perform)(WalletSend);
|