import React, { Component } from 'react';
import { Select } from 'antd';
export default class Index extends Component {
constructor(props) {
super(props);
this.state = {
value: undefined,
inputVal: undefined,
};
}
onChange = (val) => {
this.setState(
{
value: val,
inputVal: undefined,
},
() => {
const { formRef, onChange, name } = this.props;
formRef.current && formRef.current.setFieldsValue({ [name]: val });
onChange && onChange(val);
}
);
};
onSearch = (value) => {
!!value &&
this.setState({
inputVal: value,
});
};
onBlur = () => {
const { inputVal } = this.state;
!!inputVal && this.onChange(inputVal);
};
render() {
const { options = [], filterOption = false } = this.props;
const { value } = this.state;
return (
<Select
showSearch
value={value}
style={{ width: '100%', height: '100%' }}
onChange={this.onChange}
onSearch={this.onSearch}
onBlur={this.onBlur}
filterOption={filterOption}
onFocus={this.onFocusSelect}
showArrow={false}
options={options}
getPopupContainer={() => document.body}
/>
);
}
}