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