chinwagsocial/app/javascript/mastodon/components/display_name.js

28 lines
748 B
JavaScript
Raw Normal View History

import React from 'react';
2016-09-01 22:12:11 +10:00
import ImmutablePropTypes from 'react-immutable-proptypes';
import PropTypes from 'prop-types';
2016-09-01 22:12:11 +10:00
export default class DisplayName extends React.PureComponent {
static propTypes = {
account: ImmutablePropTypes.map.isRequired,
withAcct: PropTypes.bool,
};
static defaultProps = {
withAcct: true,
};
2016-09-01 22:12:11 +10:00
render () {
const { account, withAcct } = this.props;
const displayNameHtml = { __html: account.get('display_name_html') };
2016-09-01 22:12:11 +10:00
return (
<span className='display-name'>
<bdi><strong className='display-name__html' dangerouslySetInnerHTML={displayNameHtml} /></bdi> {withAcct && <span className='display-name__account'>@{account.get('acct')}</span>}
2016-09-01 22:12:11 +10:00
</span>
);
}
}