mastodon/app/javascript/flavours/glitch/components/status_header.js

63 lines
1.5 KiB
JavaScript
Raw Normal View History

2017-09-20 03:57:08 -05:00
// Package imports.
import React from 'react';
import PropTypes from 'prop-types';
import ImmutablePropTypes from 'react-immutable-proptypes';
2017-09-20 03:57:08 -05:00
// Mastodon imports.
2017-11-17 21:11:18 -06:00
import Avatar from './avatar';
import AvatarOverlay from './avatar_overlay';
import DisplayName from './display_name';
export default class StatusHeader extends React.PureComponent {
static propTypes = {
2017-07-26 17:41:28 -05:00
status: ImmutablePropTypes.map.isRequired,
friend: ImmutablePropTypes.map,
parseClick: PropTypes.func.isRequired,
};
2017-09-20 03:57:08 -05:00
// Handles clicks on account name/image
handleAccountClick = (e) => {
2017-07-26 17:41:28 -05:00
const { status, parseClick } = this.props;
parseClick(e, `/accounts/${status.getIn(['account', 'id'])}`);
}
2017-09-20 03:57:08 -05:00
// Rendering.
render () {
const {
2017-07-26 17:41:28 -05:00
status,
friend,
} = this.props;
2017-07-26 17:41:28 -05:00
const account = status.get('account');
2017-07-07 17:34:47 -05:00
return (
2018-03-12 19:57:28 -05:00
<div className='status__info__account' >
2017-09-20 03:57:08 -05:00
<a
href={account.get('url')}
target='_blank'
className='status__avatar'
onClick={this.handleAccountClick}
>
2017-09-20 13:34:11 -05:00
{
friend ? (
<AvatarOverlay account={account} friend={friend} />
) : (
<Avatar account={account} size={48} />
)
}
2017-09-20 03:57:08 -05:00
</a>
<a
href={account.get('url')}
target='_blank'
className='status__display-name'
onClick={this.handleAccountClick}
>
<DisplayName account={account} />
</a>
2018-03-12 19:57:28 -05:00
</div>
);
}
}