1948f9e767
* Remove deprecated features at React v15.5
- [x] React.PropTypes
- [x] react-addons-pure-render-mixin
- [x] react-addons-test-utils
* Uncommented out & Add browserify_rails options
* re-add react-addons-shallow
* Fix syntax error from resolve conflicts
* follow up 59a77923b3
24 lines
927 B
JavaScript
24 lines
927 B
JavaScript
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
import escapeTextContentForBrowser from 'escape-html';
|
|
import emojify from '../emoji';
|
|
|
|
class DisplayName extends React.PureComponent {
|
|
|
|
render () {
|
|
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)) };
|
|
|
|
return (
|
|
<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>
|
|
</span>
|
|
);
|
|
}
|
|
|
|
};
|
|
|
|
DisplayName.propTypes = {
|
|
account: ImmutablePropTypes.map.isRequired
|
|
}
|
|
|
|
export default DisplayName;
|