Co-authored-by: tobi <tobi.smethurst@protonmail.com> Reviewed-on: https://codeberg.org/superseriousbusiness/masto-fe-standalone/pulls/88 Co-authored-by: Zoë Bijl <moiety@noreply.codeberg.org> Co-committed-by: Zoë Bijl <moiety@noreply.codeberg.org>
25 lines
699 B
JavaScript
25 lines
699 B
JavaScript
import ImmutablePropTypes from "react-immutable-proptypes";
|
|
import ImmutablePureComponent from "react-immutable-pure-component";
|
|
|
|
import { Avatar } from "../../../components/avatar";
|
|
import { DisplayName } from "../../../components/display_name";
|
|
|
|
export default class AutosuggestAccount extends ImmutablePureComponent {
|
|
|
|
static propTypes = {
|
|
account: ImmutablePropTypes.map.isRequired,
|
|
};
|
|
|
|
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>
|
|
<DisplayName account={account} />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
}
|