2017-05-03 01:04:16 +01:00
|
|
|
import React from 'react';
|
2016-09-01 13:12:11 +01:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2019-01-16 18:47:46 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2016-09-01 13:12:11 +01:00
|
|
|
|
2017-06-23 18:36:54 +01:00
|
|
|
export default class DisplayName extends React.PureComponent {
|
2016-09-13 01:24:40 +01:00
|
|
|
|
2017-05-12 13:44:10 +01:00
|
|
|
static propTypes = {
|
2017-05-20 16:31:47 +01:00
|
|
|
account: ImmutablePropTypes.map.isRequired,
|
2018-10-20 01:23:58 +01:00
|
|
|
others: ImmutablePropTypes.list,
|
2019-01-16 18:47:46 +00:00
|
|
|
localDomain: PropTypes.string,
|
2017-05-12 13:44:10 +01:00
|
|
|
};
|
|
|
|
|
2016-09-01 13:12:11 +01:00
|
|
|
render () {
|
2019-02-15 15:08:48 +00:00
|
|
|
const { others, localDomain } = this.props;
|
2016-09-04 13:04:26 +01:00
|
|
|
|
2019-02-15 15:08:48 +00:00
|
|
|
let displayName, suffix, account;
|
2018-10-20 01:23:58 +01:00
|
|
|
|
|
|
|
if (others && others.size > 1) {
|
2019-02-15 15:08:48 +00: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}`;
|
|
|
|
}
|
2018-10-20 01:23:58 +01:00
|
|
|
} else {
|
2019-02-19 19:00:41 +00:00
|
|
|
if (others && others.size > 0) {
|
2019-02-15 15:08:48 +00:00
|
|
|
account = others.first();
|
|
|
|
} else {
|
|
|
|
account = this.props.account;
|
|
|
|
}
|
|
|
|
|
2019-01-16 18:47:46 +00:00
|
|
|
let acct = account.get('acct');
|
|
|
|
|
|
|
|
if (acct.indexOf('@') === -1 && localDomain) {
|
|
|
|
acct = `${acct}@${localDomain}`;
|
|
|
|
}
|
|
|
|
|
2019-02-15 15:08:48 +00:00
|
|
|
displayName = <bdi><strong className='display-name__html' dangerouslySetInnerHTML={{ __html: account.get('display_name_html') }} /></bdi>;
|
|
|
|
suffix = <span className='display-name__account'>@{acct}</span>;
|
2018-10-20 01:23:58 +01:00
|
|
|
}
|
|
|
|
|
2016-09-01 13:12:11 +01:00
|
|
|
return (
|
2017-04-23 03:26:55 +01:00
|
|
|
<span className='display-name'>
|
2019-02-15 15:08:48 +00:00
|
|
|
{displayName} {suffix}
|
2016-09-01 13:12:11 +01:00
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 19:05:35 +01:00
|
|
|
}
|