gab-social/app/javascript/gabsocial/components/autosuggest_account.js

39 lines
971 B
JavaScript
Raw Normal View History

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';
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)
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')}>
<div className='autosuggest-account__icon'>
<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>
);
}
}