2017-05-03 10:04:16 +10:00
|
|
|
import React from 'react';
|
|
|
|
import Avatar from '../../../components/avatar';
|
|
|
|
import DisplayName from '../../../components/display_name';
|
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
|
|
|
|
2017-06-24 03:36:54 +10:00
|
|
|
export default class AutosuggestAccount extends ImmutablePureComponent {
|
2017-05-03 10:04:16 +10:00
|
|
|
|
2017-05-12 22:44:10 +10:00
|
|
|
static propTypes = {
|
2017-05-21 01:31:47 +10:00
|
|
|
account: ImmutablePropTypes.map.isRequired,
|
2017-05-12 22:44:10 +10:00
|
|
|
};
|
|
|
|
|
2017-05-03 10:04:16 +10:00
|
|
|
render () {
|
|
|
|
const { account } = this.props;
|
|
|
|
|
|
|
|
return (
|
2018-07-01 12:16:13 +10:00
|
|
|
<div className='autosuggest-account' title={account.get('acct')}>
|
2017-08-08 03:44:55 +10:00
|
|
|
<div className='autosuggest-account-icon'><Avatar account={account} size={18} /></div>
|
2017-05-03 10:04:16 +10:00
|
|
|
<DisplayName account={account} />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|