mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
05a0179616
* demo(AutoComplete): opt options type by AutoCompleteProps * lint fix
29 lines
705 B
TypeScript
29 lines
705 B
TypeScript
import React from 'react';
|
|
import { AutoComplete } from 'antd';
|
|
import type { AutoCompleteProps } from 'antd';
|
|
|
|
const App: React.FC = () => {
|
|
const [options, setOptions] = React.useState<AutoCompleteProps['options']>([]);
|
|
const handleSearch = (value: string) => {
|
|
setOptions(() => {
|
|
if (!value || value.includes('@')) {
|
|
return [];
|
|
}
|
|
return ['gmail.com', '163.com', 'qq.com'].map((domain) => ({
|
|
label: `${value}@${domain}`,
|
|
value: `${value}@${domain}`,
|
|
}));
|
|
});
|
|
};
|
|
return (
|
|
<AutoComplete
|
|
style={{ width: 200 }}
|
|
onSearch={handleSearch}
|
|
placeholder="input here"
|
|
options={options}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default App;
|