mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 04:58:55 +08:00
29 lines
725 B
TypeScript
29 lines
725 B
TypeScript
import React from 'react';
|
|
import { AutoComplete } from 'antd';
|
|
import type { DefaultOptionType } from 'antd/es/select';
|
|
|
|
const App: React.FC = () => {
|
|
const [options, setOptions] = React.useState<DefaultOptionType[]>([]);
|
|
const handleSearch = (value: string) => {
|
|
setOptions(() => {
|
|
if (!value || value.includes('@')) {
|
|
return [];
|
|
}
|
|
return ['gmail.com', '163.com', 'qq.com'].map<DefaultOptionType>((domain) => ({
|
|
label: `${value}@${domain}`,
|
|
value: `${value}@${domain}`,
|
|
}));
|
|
});
|
|
};
|
|
return (
|
|
<AutoComplete
|
|
style={{ width: 200 }}
|
|
onSearch={handleSearch}
|
|
placeholder="input here"
|
|
options={options}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default App;
|