2017-05-02 17:04:16 -07:00
|
|
|
import React from 'react';
|
2017-12-03 23:26:40 -08:00
|
|
|
import Avatar from 'flavours/glitch/components/avatar';
|
|
|
|
import DisplayName from 'flavours/glitch/components/display_name';
|
2017-05-02 17:04:16 -07:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
|
|
|
|
2017-06-23 10:36:54 -07:00
|
|
|
export default class AutosuggestAccount extends ImmutablePureComponent {
|
2017-05-02 17:04:16 -07:00
|
|
|
|
2017-05-12 05:44:10 -07:00
|
|
|
static propTypes = {
|
2017-05-20 08:31:47 -07:00
|
|
|
account: ImmutablePropTypes.map.isRequired,
|
2017-05-12 05:44:10 -07:00
|
|
|
};
|
|
|
|
|
2017-05-02 17:04:16 -07:00
|
|
|
render () {
|
|
|
|
const { account } = this.props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='autosuggest-account'>
|
2017-08-06 11:59:19 -07:00
|
|
|
<div className='autosuggest-account-icon'><Avatar account={account} size={18} /></div>
|
2017-05-02 17:04:16 -07:00
|
|
|
<DisplayName account={account} />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|