mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 23:31:13 +01:00
8eb6d171e6
* feat: Cache status height to avoid expensive renders * feat: Escape content and emojify in reducers * fix(css): Remove backface-visibility: hidden from .scrollable * fix(statuses): Avoid creating DOMParses inside a loop
20 lines
581 B
JavaScript
20 lines
581 B
JavaScript
import React from 'react';
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
export default class DisplayName extends React.PureComponent {
|
|
|
|
static propTypes = {
|
|
account: ImmutablePropTypes.map.isRequired,
|
|
};
|
|
|
|
render () {
|
|
const displayNameHtml = { __html: this.props.account.get('display_name_html') };
|
|
|
|
return (
|
|
<span className='display-name'>
|
|
<strong className='display-name__html' dangerouslySetInnerHTML={displayNameHtml} /> <span className='display-name__account'>@{this.props.account.get('acct')}</span>
|
|
</span>
|
|
);
|
|
}
|
|
|
|
}
|