mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-15 17:31:25 +08:00
31 lines
703 B
TypeScript
31 lines
703 B
TypeScript
|
import React, { useState } from 'react';
|
||
|
import { AutoComplete } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => {
|
||
|
const [options, setOptions] = useState<{ value: string; label: string }[]>([]);
|
||
|
|
||
|
const handleSearch = (value: string) => {
|
||
|
let res: { value: string; label: string }[] = [];
|
||
|
if (!value || value.indexOf('@') >= 0) {
|
||
|
res = [];
|
||
|
} else {
|
||
|
res = ['gmail.com', '163.com', 'qq.com'].map(domain => ({
|
||
|
value,
|
||
|
label: `${value}@${domain}`,
|
||
|
}));
|
||
|
}
|
||
|
setOptions(res);
|
||
|
};
|
||
|
|
||
|
return (
|
||
|
<AutoComplete
|
||
|
style={{ width: 200 }}
|
||
|
onSearch={handleSearch}
|
||
|
placeholder="input here"
|
||
|
options={options}
|
||
|
/>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default App;
|