import React, { Component } from 'react'; import { Query } from 'components/renderCbs'; import { getData, getDataExists } from 'selectors/transaction'; import { connect } from 'react-redux'; import { AppState } from 'reducers'; import { CallBackProps } from 'components/DataFieldFactory'; interface OwnProps { withProps(props: CallBackProps): React.ReactElement | null; onChange(ev: React.FormEvent): void; } interface StateProps { data: AppState['transaction']['fields']['data']; dataExists: boolean; } type Props = OwnProps & StateProps; class DataInputClass extends Component { public render() { const { data, onChange, dataExists } = this.props; return ( this.props.withProps({ data, onChange, readOnly: !!readOnly, dataExists }) } /> ); } } export const DataInput = connect((state: AppState) => ({ data: getData(state), dataExists: getDataExists(state) }))(DataInputClass);