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