2016-09-01 15:12:11 +03:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2016-11-11 00:30:42 +02:00
|
|
|
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
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
|
|
|
|
|
|
|
const DisplayName = React.createClass({
|
|
|
|
|
|
|
|
propTypes: {
|
|
|
|
account: ImmutablePropTypes.map.isRequired
|
|
|
|
},
|
|
|
|
|
2016-09-13 03:24:40 +03:00
|
|
|
mixins: [PureRenderMixin],
|
|
|
|
|
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 (
|
2016-11-15 19:38:57 +02:00
|
|
|
<span style={{ display: 'block', maxWidth: '100%', overflow: 'hidden', whiteSpace: 'nowrap', textOverflow: 'ellipsis' }} className='display-name'>
|
|
|
|
<strong style={{ fontWeight: '500' }} dangerouslySetInnerHTML={displayNameHTML} /> <span style={{ fontSize: '14px' }}>@{this.props.account.get('acct')}</span>
|
2016-09-01 15:12:11 +03:00
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
export default DisplayName;
|