use reflow to migrate from flow to typescript

This commit is contained in:
Sebastian Sdorra
2019-10-19 16:38:07 +02:00
parent f7b8050dfa
commit 6e7a08a3bb
495 changed files with 14239 additions and 13766 deletions

View File

@@ -0,0 +1,66 @@
import React from 'react';
import classNames from 'classnames';
import LabelWithHelpIcon from './LabelWithHelpIcon';
export type SelectItem = {
value: string;
label: string;
};
type Props = {
name?: string;
label?: string;
options: SelectItem[];
value?: string;
onChange: (value: string, name?: string) => void;
loading?: boolean;
helpText?: string;
disabled?: boolean;
};
class Select extends React.Component<Props> {
field: HTMLSelectElement | null | undefined;
componentDidMount() {
// trigger change after render, if value is null to set it to the first value
// of the given options.
if (!this.props.value && this.field && this.field.value) {
this.props.onChange(this.field.value);
}
}
handleInput = (event: SyntheticInputEvent<HTMLSelectElement>) => {
this.props.onChange(event.target.value, this.props.name);
};
render() {
const { options, value, label, helpText, loading, disabled } = this.props;
const loadingClass = loading ? 'is-loading' : '';
return (
<div className="field">
<LabelWithHelpIcon label={label} helpText={helpText} />
<div className={classNames('control select', loadingClass)}>
<select
ref={input => {
this.field = input;
}}
value={value}
onChange={this.handleInput}
disabled={disabled}
>
{options.map(opt => {
return (
<option value={opt.value} key={'KEY_' + opt.value}>
{opt.label}
</option>
);
})}
</select>
</div>
</div>
);
}
}
export default Select;