You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
928 B
40 lines
928 B
import React, { useState } from 'react';
|
|
import { AutoComplete, Input } from 'antd';
|
|
|
|
const { TextArea } = Input;
|
|
|
|
const App: React.FC = () => {
|
|
const [options, setOptions] = useState<{ value: string }[]>([]);
|
|
|
|
const handleSearch = (value: string) => {
|
|
setOptions(
|
|
!value ? [] : [{ value }, { value: value + value }, { value: value + value + value }],
|
|
);
|
|
};
|
|
|
|
const handleKeyPress = (ev: React.KeyboardEvent<HTMLTextAreaElement>) => {
|
|
console.log('handleKeyPress', ev);
|
|
};
|
|
|
|
const onSelect = (value: string) => {
|
|
console.log('onSelect', value);
|
|
};
|
|
|
|
return (
|
|
<AutoComplete
|
|
options={options}
|
|
style={{ width: 200 }}
|
|
onSelect={onSelect}
|
|
onSearch={handleSearch}
|
|
>
|
|
<TextArea
|
|
placeholder="input here"
|
|
className="custom"
|
|
style={{ height: 50 }}
|
|
onKeyPress={handleKeyPress}
|
|
/>
|
|
</AutoComplete>
|
|
);
|
|
};
|
|
|
|
export default App;
|
|
|