2019-07-02 08:10:25 +01:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2020-04-11 23:29:19 +01:00
|
|
|
import { makeGetAccount } from '../selectors';
|
|
|
|
import Avatar from './avatar';
|
|
|
|
import DisplayName from './display_name';
|
2019-08-09 17:06:27 +01:00
|
|
|
|
2019-08-07 06:02:36 +01:00
|
|
|
const makeMapStateToProps = () => {
|
|
|
|
const getAccount = makeGetAccount();
|
|
|
|
|
|
|
|
const mapStateToProps = (state, { id }) => ({
|
|
|
|
account: getAccount(state, id),
|
|
|
|
});
|
|
|
|
|
|
|
|
return mapStateToProps;
|
|
|
|
};
|
|
|
|
|
2020-02-24 21:56:07 +00:00
|
|
|
export default
|
|
|
|
@connect(makeMapStateToProps)
|
2019-08-07 06:02:36 +01:00
|
|
|
class AutosuggestAccount extends ImmutablePureComponent {
|
2019-07-02 08:10:25 +01:00
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
account: ImmutablePropTypes.map.isRequired,
|
2020-04-11 23:29:19 +01:00
|
|
|
}
|
2019-07-02 08:10:25 +01:00
|
|
|
|
|
|
|
render () {
|
|
|
|
const { account } = this.props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='autosuggest-account' title={account.get('acct')}>
|
2019-08-09 17:06:27 +01:00
|
|
|
<div className='autosuggest-account__icon'>
|
2019-08-07 06:02:36 +01:00
|
|
|
<Avatar account={account} size={18} />
|
|
|
|
</div>
|
2020-04-24 04:17:27 +01:00
|
|
|
<DisplayName account={account} noRelationship noHover />
|
2019-07-02 08:10:25 +01:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|