37 lines
1.0 KiB
TypeScript
37 lines
1.0 KiB
TypeScript
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<any> | null;
|
|
onChange(ev: React.FormEvent<HTMLInputElement>): void;
|
|
}
|
|
interface StateProps {
|
|
data: AppState['transaction']['fields']['data'];
|
|
dataExists: boolean;
|
|
}
|
|
|
|
type Props = OwnProps & StateProps;
|
|
|
|
class DataInputClass extends Component<Props> {
|
|
public render() {
|
|
const { data, onChange, dataExists } = this.props;
|
|
return (
|
|
<Query
|
|
params={['readOnly']}
|
|
withQuery={({ readOnly }) =>
|
|
this.props.withProps({ data, onChange, readOnly: !!readOnly, dataExists })
|
|
}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
export const DataInput = connect((state: AppState) => ({
|
|
data: getData(state),
|
|
dataExists: getDataExists(state)
|
|
}))(DataInputClass);
|