mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 23:35:38 +08:00
14a1e6bd51
* feat: tsconfig enable strict * feat: add no-explicit-any * feat: strict * feat: as THEME * feat: 优化 keys 类型写法 * feat: demo remove any * feat: as number * feat: this any * feat: add eslint * feat: cascader * feat: props any * feat: remove any * feat: remove any * feat: any 提示错误 * feat: remove any * feat: add eslint * feat: 允许 T = any 存在 * feat: color funciton * feat: 恢复 lint * feat: merge master * feat: as ReactElement * feat: type
35 lines
799 B
TypeScript
35 lines
799 B
TypeScript
import React, { useState } from 'react';
|
|
import { Mentions } from 'antd';
|
|
import type { MentionsProps } from 'rc-mentions';
|
|
|
|
const MOCK_DATA = {
|
|
'@': ['afc163', 'zombiej', 'yesmeck'],
|
|
'#': ['1.0', '2.0', '3.0'],
|
|
};
|
|
|
|
type PrefixType = keyof typeof MOCK_DATA;
|
|
|
|
const App: React.FC = () => {
|
|
const [prefix, setPrefix] = useState<PrefixType>('@');
|
|
|
|
const onSearch: MentionsProps['onSearch'] = (_, newPrefix) => {
|
|
setPrefix(newPrefix as PrefixType);
|
|
};
|
|
|
|
return (
|
|
<Mentions
|
|
style={{ width: '100%' }}
|
|
placeholder="input @ to mention people, # to mention tag"
|
|
prefix={['@', '#']}
|
|
onSearch={onSearch}
|
|
options={(MOCK_DATA[prefix] || []).map((value) => ({
|
|
key: value,
|
|
value,
|
|
label: value,
|
|
}))}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default App;
|