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