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