83 lines
2.5 KiB
JavaScript
83 lines
2.5 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { connect } from 'react-redux';
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
import VerificationBadge from './verification_badge';
|
|
import { getAcct } from '../utils/accounts';
|
|
import { List as ImmutableList } from 'immutable';
|
|
import HoverRefWrapper from 'soapbox/components/hover_ref_wrapper';
|
|
import Icon from './icon';
|
|
import RelativeTimestamp from './relative_timestamp';
|
|
import { displayFqn } from 'soapbox/utils/state';
|
|
|
|
const mapStateToProps = state => {
|
|
return {
|
|
displayFqn: displayFqn(state),
|
|
};
|
|
};
|
|
|
|
export default @connect(mapStateToProps)
|
|
class DisplayName extends React.PureComponent {
|
|
|
|
static propTypes = {
|
|
account: ImmutablePropTypes.map.isRequired,
|
|
displayFqn: PropTypes.bool,
|
|
others: ImmutablePropTypes.list,
|
|
children: PropTypes.node,
|
|
withDate: PropTypes.bool,
|
|
};
|
|
|
|
static defaultProps = {
|
|
withDate: false,
|
|
}
|
|
|
|
render() {
|
|
const { account, displayFqn, others, children, withDate } = this.props;
|
|
|
|
let displayName, suffix;
|
|
const verified = account.getIn(['pleroma', 'tags'], ImmutableList()).includes('verified');
|
|
|
|
const createdAt = account.get('created_at');
|
|
|
|
const joinedAt = createdAt ? (
|
|
<div className='account__joined-at'>
|
|
<Icon id='calendar' />
|
|
<RelativeTimestamp timestamp={createdAt} />
|
|
</div>
|
|
) : null;
|
|
|
|
if (others && others.size > 1) {
|
|
displayName = others.take(2).map(a => (
|
|
<span className='display-name__name'>
|
|
<bdi key={a.get('id')}><strong className='display-name__html' dangerouslySetInnerHTML={{ __html: a.get('display_name_html') }} /></bdi>
|
|
{verified && <VerificationBadge />}
|
|
{withDate && joinedAt}
|
|
</span>
|
|
)).reduce((prev, cur) => [prev, ', ', cur]);
|
|
|
|
if (others.size - 2 > 0) {
|
|
suffix = `+${others.size - 2}`;
|
|
}
|
|
} else {
|
|
displayName = (
|
|
<span className='display-name__name'>
|
|
<bdi><strong className='display-name__html' dangerouslySetInnerHTML={{ __html: account.get('display_name_html') }} /></bdi>
|
|
{verified && <VerificationBadge />}
|
|
{withDate && joinedAt}
|
|
</span>
|
|
);
|
|
suffix = <span className='display-name__account'>@{getAcct(account, displayFqn)}</span>;
|
|
}
|
|
|
|
return (
|
|
<span className='display-name'>
|
|
<HoverRefWrapper accountId={account.get('id')} inline>
|
|
{displayName}
|
|
</HoverRefWrapper>
|
|
{suffix}
|
|
{children}
|
|
</span>
|
|
);
|
|
}
|
|
|
|
}
|