2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2016-09-01 08:12:11 -04:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
|
2017-06-23 13:36:54 -04:00
|
|
|
export default class DisplayName extends React.PureComponent {
|
2016-09-12 20:24:40 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static propTypes = {
|
2017-05-20 11:31:47 -04:00
|
|
|
account: ImmutablePropTypes.map.isRequired,
|
2018-10-19 20:23:58 -04:00
|
|
|
others: ImmutablePropTypes.list,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
2016-09-01 08:12:11 -04:00
|
|
|
render () {
|
2018-10-19 20:23:58 -04:00
|
|
|
const { account, others } = this.props;
|
2018-10-07 17:44:58 -04:00
|
|
|
const displayNameHtml = { __html: account.get('display_name_html') };
|
2016-09-04 08:04:26 -04:00
|
|
|
|
2018-10-19 20:23:58 -04:00
|
|
|
let suffix;
|
|
|
|
|
|
|
|
if (others && others.size > 1) {
|
|
|
|
suffix = `+${others.size}`;
|
|
|
|
} else {
|
|
|
|
suffix = <span className='display-name__account'>@{account.get('acct')}</span>;
|
|
|
|
}
|
|
|
|
|
2016-09-01 08:12:11 -04:00
|
|
|
return (
|
2017-04-22 22:26:55 -04:00
|
|
|
<span className='display-name'>
|
2018-10-22 17:23:00 -04:00
|
|
|
<bdi><strong className='display-name__html' dangerouslySetInnerHTML={displayNameHtml} /></bdi> {suffix}
|
2016-09-01 08:12:11 -04:00
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|