2017-05-03 01:04:16 +01:00
|
|
|
import React from 'react';
|
2016-09-01 13:12:11 +01:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2018-10-07 22:44:58 +01:00
|
|
|
import PropTypes from 'prop-types';
|
2016-09-01 13:12:11 +01:00
|
|
|
|
2017-06-23 18:36:54 +01:00
|
|
|
export default class DisplayName extends React.PureComponent {
|
2016-09-13 01:24:40 +01:00
|
|
|
|
2017-05-12 13:44:10 +01:00
|
|
|
static propTypes = {
|
2017-05-20 16:31:47 +01:00
|
|
|
account: ImmutablePropTypes.map.isRequired,
|
2018-10-07 22:44:58 +01:00
|
|
|
withAcct: PropTypes.bool,
|
|
|
|
};
|
|
|
|
|
|
|
|
static defaultProps = {
|
|
|
|
withAcct: true,
|
2017-05-12 13:44:10 +01:00
|
|
|
};
|
|
|
|
|
2016-09-01 13:12:11 +01:00
|
|
|
render () {
|
2018-10-07 22:44:58 +01:00
|
|
|
const { account, withAcct } = this.props;
|
|
|
|
const displayNameHtml = { __html: account.get('display_name_html') };
|
2016-09-04 13:04:26 +01:00
|
|
|
|
2016-09-01 13:12:11 +01:00
|
|
|
return (
|
2017-04-23 03:26:55 +01:00
|
|
|
<span className='display-name'>
|
2018-10-07 22:44:58 +01:00
|
|
|
<bdi><strong className='display-name__html' dangerouslySetInnerHTML={displayNameHtml} /></bdi> {withAcct && <span className='display-name__account'>@{account.get('acct')}</span>}
|
2016-09-01 13:12:11 +01:00
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 19:05:35 +01:00
|
|
|
}
|