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-02-26 11:34:56 +11:00
|
|
|
import escapeTextContentForBrowser from 'escape-html';
|
2016-11-16 04:38:57 +11:00
|
|
|
import emojify from '../emoji';
|
2016-09-01 22:12:11 +10:00
|
|
|
|
2017-04-22 04:05:35 +10:00
|
|
|
class DisplayName extends React.PureComponent {
|
2016-09-13 10:24:40 +10:00
|
|
|
|
2016-09-01 22:12:11 +10:00
|
|
|
render () {
|
2016-11-16 04:38:57 +11: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 22:04:26 +10:00
|
|
|
|
2016-09-01 22:12:11 +10:00
|
|
|
return (
|
2017-04-23 12:26:55 +10: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 22:12:11 +10:00
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-22 04:05:35 +10:00
|
|
|
};
|
|
|
|
|
|
|
|
DisplayName.propTypes = {
|
|
|
|
account: ImmutablePropTypes.map.isRequired
|
|
|
|
}
|
2016-09-01 22:12:11 +10:00
|
|
|
|
|
|
|
export default DisplayName;
|