import React, { Component } from 'react'; import { Query } from 'components/renderCbs'; import { ICurrentValue, getCurrentValue, nonStandardTransaction } from 'selectors/transaction'; import { AppState } from 'reducers'; import { connect } from 'react-redux'; import { CallbackProps } from 'components/AmountFieldFactory'; interface OwnProps { onChange(ev: React.FormEvent): void; withProps(props: CallbackProps): React.ReactElement | null; } interface StateProps { isNonStandard: boolean; currentValue: ICurrentValue; } type Props = OwnProps & StateProps; class AmountInputClass extends Component { public render() { const { currentValue, onChange, withProps, isNonStandard } = this.props; return ( withProps({ currentValue, isValid: !!currentValue.value || isNonStandard, readOnly: !!readOnly, onChange }) } /> ); } } export const AmountInput = connect((state: AppState) => ({ currentValue: getCurrentValue(state), isNonStandard: nonStandardTransaction(state) }))(AmountInputClass);