ant-design/components/mention/demo/avatar.md

89 lines
1.8 KiB
Markdown
Raw Normal View History

2016-07-04 10:31:27 +08:00
---
order: 3
title:
zh-CN: 头像
en-US: Icon Image
2016-07-04 10:31:27 +08:00
---
## zh-CN
自定义建议(含头像)
注意自定义建议时onSearchChange 必须不能为空。
## en-US
Customize suggestions.
2016-07-04 10:31:27 +08:00
2019-05-07 14:57:32 +08:00
```jsx
import { Mention, Avatar } from 'antd';
2018-06-27 15:55:04 +08:00
2019-06-19 19:09:08 +08:00
const { Nav } = Mention;
2016-07-04 10:31:27 +08:00
const webFrameworks = [
2019-05-07 14:57:32 +08:00
{
name: 'React',
type: 'JavaScript',
icon: 'https://zos.alipayobjects.com/rmsportal/LFIeMPzdLcLnEUe.svg',
},
{
name: 'Angular',
type: 'JavaScript',
icon: 'https://zos.alipayobjects.com/rmsportal/PJTbxSvzYWjDZnJ.png',
},
{
name: 'Dva',
type: 'Javascript',
icon: 'https://zos.alipayobjects.com/rmsportal/EYPwSeEJKxDtVxI.png',
},
{
name: 'Flask',
type: 'Python',
icon: 'https://zos.alipayobjects.com/rmsportal/xaypBUijfnpAlXE.png',
},
2016-07-04 10:31:27 +08:00
];
class CustomNavMention extends React.Component {
2017-02-20 21:47:57 +08:00
state = {
suggestions: [],
2019-05-07 14:57:32 +08:00
};
2018-06-27 15:55:04 +08:00
2019-05-07 14:57:32 +08:00
onSearchChange = value => {
2016-07-04 10:31:27 +08:00
const searchValue = value.toLowerCase();
2019-05-07 14:57:32 +08:00
const filtered = webFrameworks.filter(
item => item.name.toLowerCase().indexOf(searchValue) !== -1,
);
2017-05-15 14:37:22 +08:00
const suggestions = filtered.map(suggestion => (
2019-05-07 14:57:32 +08:00
<Nav value={suggestion.name} data={suggestion} disabled={suggestion.disabled}>
<Avatar
src={suggestion.icon}
size="small"
2018-11-28 15:00:03 +08:00
style={{
2019-05-07 14:57:32 +08:00
width: 14,
height: 14,
marginRight: 8,
top: -1,
position: 'relative',
2018-11-28 15:00:03 +08:00
}}
/>
{suggestion.name} - {suggestion.type}
2017-05-15 14:37:22 +08:00
</Nav>
));
this.setState({ suggestions });
2019-05-07 14:57:32 +08:00
};
2018-06-27 15:55:04 +08:00
2016-07-04 10:31:27 +08:00
render() {
2016-08-29 14:46:31 +08:00
const { suggestions } = this.state;
2016-07-21 15:40:13 +08:00
return (
<Mention
2017-09-25 22:42:07 +08:00
style={{ width: '100%' }}
2016-07-21 15:40:13 +08:00
suggestions={suggestions}
onSearchChange={this.onSearchChange}
/>
);
}
}
2016-07-04 10:31:27 +08:00
ReactDOM.render(<CustomNavMention />, mountNode);
2019-05-07 14:57:32 +08:00
```