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