2017-05-03 03:04:16 +03:00
|
|
|
import React from 'react';
|
2016-09-01 15:12:11 +03:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-02-26 02:34:56 +02:00
|
|
|
import escapeTextContentForBrowser from 'escape-html';
|
2016-11-15 19:38:57 +02:00
|
|
|
import emojify from '../emoji';
|
2016-09-01 15:12:11 +03:00
|
|
|
|
2017-06-23 20:36:54 +03:00
|
|
|
export default class DisplayName extends React.PureComponent {
|
2016-09-13 03:24:40 +03:00
|
|
|
|
2017-05-12 15:44:10 +03:00
|
|
|
static propTypes = {
|
2017-05-20 18:31:47 +03:00
|
|
|
account: ImmutablePropTypes.map.isRequired,
|
2017-05-12 15:44:10 +03:00
|
|
|
};
|
|
|
|
|
2016-09-01 15:12:11 +03:00
|
|
|
render () {
|
2016-11-15 19:38:57 +02:00
|
|
|
const displayName = this.props.account.get('display_name').length === 0 ? this.props.account.get('username') : this.props.account.get('display_name');
|
|
|
|
const displayNameHTML = { __html: emojify(escapeTextContentForBrowser(displayName)) };
|
2016-09-04 15:04:26 +03:00
|
|
|
|
2016-09-01 15:12:11 +03:00
|
|
|
return (
|
2017-04-23 05:26:55 +03:00
|
|
|
<span className='display-name'>
|
|
|
|
<strong className='display-name__html' dangerouslySetInnerHTML={displayNameHTML} /> <span className='display-name__account'>@{this.props.account.get('acct')}</span>
|
2016-09-01 15:12:11 +03:00
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 21:05:35 +03:00
|
|
|
}
|