mastodon/app/javascript/mastodon/components/display_name.js

49 lines
1.4 KiB
JavaScript
Raw Normal View History

import React from 'react';
2016-09-01 14:12:11 +02:00
import ImmutablePropTypes from 'react-immutable-proptypes';
import PropTypes from 'prop-types';
2016-09-01 14:12:11 +02:00
export default class DisplayName extends React.PureComponent {
static propTypes = {
account: ImmutablePropTypes.map.isRequired,
others: ImmutablePropTypes.list,
localDomain: PropTypes.string,
};
2016-09-01 14:12:11 +02:00
render () {
2019-02-24 01:55:42 +01:00
const { others, localDomain } = this.props;
2019-02-24 01:55:42 +01:00
let displayName, suffix, account;
if (others && others.size > 1) {
2019-02-24 01:55:42 +01:00
displayName = others.take(2).map(a => <bdi key={a.get('id')}><strong className='display-name__html' dangerouslySetInnerHTML={{ __html: a.get('display_name_html') }} /></bdi>).reduce((prev, cur) => [prev, ', ', cur]);
if (others.size - 2 > 0) {
suffix = `+${others.size - 2}`;
}
} else {
2019-02-24 01:55:42 +01:00
if (others && others.size > 0) {
account = others.first();
} else {
account = this.props.account;
}
let acct = account.get('acct');
if (acct.indexOf('@') === -1 && localDomain) {
acct = `${acct}@${localDomain}`;
}
2019-02-24 01:55:42 +01:00
displayName = <bdi><strong className='display-name__html' dangerouslySetInnerHTML={{ __html: account.get('display_name_html') }} /></bdi>;
suffix = <span className='display-name__account'>@{acct}</span>;
}
2016-09-01 14:12:11 +02:00
return (
<span className='display-name'>
2019-02-24 01:55:42 +01:00
{displayName} {suffix}
2016-09-01 14:12:11 +02:00
</span>
);
}
}