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.
57 lines
1.4 KiB
57 lines
1.4 KiB
import React, { useCallback, useRef, useState } from 'react';
|
|
import { Mentions } from 'antd';
|
|
import debounce from 'lodash/debounce';
|
|
|
|
const App: React.FC = () => {
|
|
const [loading, setLoading] = useState(false);
|
|
const [users, setUsers] = useState<{ login: string; avatar_url: string }[]>([]);
|
|
const ref = useRef<string>();
|
|
|
|
const loadGithubUsers = (key: string) => {
|
|
if (!key) {
|
|
setUsers([]);
|
|
return;
|
|
}
|
|
|
|
fetch(`https://api.github.com/search/users?q=${key}`)
|
|
.then((res) => res.json())
|
|
.then(({ items = [] }) => {
|
|
if (ref.current !== key) return;
|
|
|
|
setLoading(false);
|
|
setUsers(items.slice(0, 10));
|
|
});
|
|
};
|
|
|
|
const debounceLoadGithubUsers = useCallback(debounce(loadGithubUsers, 800), []);
|
|
|
|
const onSearch = (search: string) => {
|
|
console.log('Search:', search);
|
|
ref.current = search;
|
|
setLoading(!!search);
|
|
setUsers([]);
|
|
|
|
debounceLoadGithubUsers(search);
|
|
};
|
|
|
|
return (
|
|
<Mentions
|
|
style={{ width: '100%' }}
|
|
loading={loading}
|
|
onSearch={onSearch}
|
|
options={users.map(({ login, avatar_url: avatar }) => ({
|
|
key: login,
|
|
value: login,
|
|
className: 'antd-demo-dynamic-option',
|
|
label: (
|
|
<>
|
|
<img src={avatar} alt={login} />
|
|
<span>{login}</span>
|
|
</>
|
|
),
|
|
}))}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default App;
|
|
|