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

63 lines
1.5 KiB
JavaScript
Raw Normal View History

2017-09-20 10:57:08 +02:00
// Package imports.
import React from 'react';
import PropTypes from 'prop-types';
import ImmutablePropTypes from 'react-immutable-proptypes';
2017-09-20 10:57:08 +02:00
// Mastodon imports.
2017-11-18 04:11:18 +01: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-27 00:41:28 +02:00
status: ImmutablePropTypes.map.isRequired,
friend: ImmutablePropTypes.map,
parseClick: PropTypes.func.isRequired,
};
2017-09-20 10:57:08 +02:00
// Handles clicks on account name/image
handleAccountClick = (e) => {
2017-07-27 00:41:28 +02:00
const { status, parseClick } = this.props;
parseClick(e, `/accounts/${+status.getIn(['account', 'id'])}`);
}
2017-09-20 10:57:08 +02:00
// Rendering.
render () {
const {
2017-07-27 00:41:28 +02:00
status,
friend,
} = this.props;
2017-07-27 00:41:28 +02:00
const account = status.get('account');
2017-07-08 00:34:47 +02:00
return (
2018-03-13 01:57:28 +01:00
<div className='status__info__account' >
2017-09-20 10:57:08 +02:00
<a
href={account.get('url')}
target='_blank'
className='status__avatar'
onClick={this.handleAccountClick}
>
2017-09-20 20:34:11 +02:00
{
friend ? (
<AvatarOverlay account={account} friend={friend} />
) : (
<Avatar account={account} size={48} />
)
}
2017-09-20 10:57:08 +02:00
</a>
<a
href={account.get('url')}
target='_blank'
className='status__display-name'
onClick={this.handleAccountClick}
>
<DisplayName account={account} />
</a>
2018-03-13 01:57:28 +01:00
</div>
);
}
}