mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-21 18:56:03 +08:00
79 lines
2.0 KiB
TypeScript
79 lines
2.0 KiB
TypeScript
/* eslint-disable compat/compat */
|
|
import React, { useState } from 'react';
|
|
import { Select } from 'antd';
|
|
import type { SelectProps } from 'antd';
|
|
import type { AnyObject } from 'antd/es/_util/type';
|
|
|
|
let timeout: ReturnType<typeof setTimeout> | null;
|
|
let currentValue: string;
|
|
|
|
const toURLSearchParams = <T extends AnyObject>(record: T) => {
|
|
const params = new URLSearchParams();
|
|
for (const [key, value] of Object.entries(record)) {
|
|
params.append(key, value);
|
|
}
|
|
return params;
|
|
};
|
|
|
|
const fetchData = (value: string, callback: (data: { value: string; text: string }[]) => void) => {
|
|
if (timeout) {
|
|
clearTimeout(timeout);
|
|
timeout = null;
|
|
}
|
|
currentValue = value;
|
|
|
|
const params = toURLSearchParams({ code: 'utf-8', q: value });
|
|
|
|
const fake = () => {
|
|
fetch(`https://suggest.taobao.com/sug?${params.toString()}`)
|
|
.then((response) => response.json())
|
|
.then(({ result }) => {
|
|
if (currentValue === value) {
|
|
const data = result.map((item: any) => ({ value: item[0], text: item[0] }));
|
|
callback(data);
|
|
}
|
|
});
|
|
};
|
|
if (value) {
|
|
timeout = setTimeout(fake, 300);
|
|
} else {
|
|
callback([]);
|
|
}
|
|
};
|
|
|
|
const SearchInput: React.FC<{ placeholder: string; style: React.CSSProperties }> = (props) => {
|
|
const [data, setData] = useState<SelectProps['options']>([]);
|
|
const [value, setValue] = useState<string>();
|
|
|
|
const handleSearch = (newValue: string) => {
|
|
fetchData(newValue, setData);
|
|
};
|
|
|
|
const handleChange = (newValue: string) => {
|
|
setValue(newValue);
|
|
};
|
|
|
|
return (
|
|
<Select
|
|
showSearch
|
|
value={value}
|
|
placeholder={props.placeholder}
|
|
style={props.style}
|
|
defaultActiveFirstOption={false}
|
|
suffixIcon={null}
|
|
filterOption={false}
|
|
onSearch={handleSearch}
|
|
onChange={handleChange}
|
|
notFoundContent={null}
|
|
options={(data || []).map((d) => ({
|
|
value: d.value,
|
|
label: d.text,
|
|
}))}
|
|
/>
|
|
);
|
|
};
|
|
|
|
const App: React.FC = () => <SearchInput placeholder="input search text" style={{ width: 200 }} />;
|
|
|
|
export default App;
|