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>
72 lines
1.7 KiB
JavaScript
72 lines
1.7 KiB
JavaScript
// Package imports.
|
|
import PropTypes from "prop-types";
|
|
import { PureComponent } from "react";
|
|
|
|
import ImmutablePropTypes from "react-immutable-proptypes";
|
|
|
|
// Mastodon imports.
|
|
import { Avatar } from "./avatar";
|
|
import AvatarOverlay from "./avatar_overlay";
|
|
import { DisplayName } from "./display_name";
|
|
|
|
export default class StatusHeader extends PureComponent {
|
|
|
|
static propTypes = {
|
|
status: ImmutablePropTypes.map.isRequired,
|
|
friend: ImmutablePropTypes.map,
|
|
parseClick: PropTypes.func.isRequired,
|
|
};
|
|
|
|
// Handles clicks on account name/image
|
|
handleClick = (acct, e) => {
|
|
const { parseClick } = this.props;
|
|
parseClick(e, `/@${acct}`);
|
|
};
|
|
|
|
handleAccountClick = (e) => {
|
|
const { status } = this.props;
|
|
this.handleClick(status.getIn(["account", "acct"]), e);
|
|
};
|
|
|
|
// Rendering.
|
|
render () {
|
|
const {
|
|
status,
|
|
friend,
|
|
} = this.props;
|
|
|
|
const account = status.get("account");
|
|
|
|
let statusAvatar;
|
|
if (friend === undefined || friend === null) {
|
|
statusAvatar = <Avatar account={account} size={48} />;
|
|
} else {
|
|
statusAvatar = <AvatarOverlay account={account} friend={friend} />;
|
|
}
|
|
|
|
return (
|
|
<div className='status__info__account'>
|
|
<a
|
|
href={account.get("url")}
|
|
target='_blank'
|
|
className='status__avatar'
|
|
onClick={this.handleAccountClick}
|
|
rel='noopener noreferrer'
|
|
>
|
|
{statusAvatar}
|
|
</a>
|
|
<a
|
|
href={account.get("url")}
|
|
target='_blank'
|
|
className='status__display-name'
|
|
onClick={this.handleAccountClick}
|
|
rel='noopener noreferrer'
|
|
>
|
|
<DisplayName account={account} />
|
|
</a>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
}
|