about summary refs log tree commit diff
path: root/app/javascript/mastodon/components/display_name.js
blob: c3a9ab9211e4cf4f32b2661a0fde0348d7852622 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import React from 'react';
import ImmutablePropTypes from 'react-immutable-proptypes';
import PropTypes from 'prop-types';

export default class DisplayName extends React.PureComponent {

  static propTypes = {
    account: ImmutablePropTypes.map.isRequired,
    withAcct: PropTypes.bool,
  };

  static defaultProps = {
    withAcct: true,
  };

  render () {
    const { account, withAcct } = this.props;
    const displayNameHtml = { __html: account.get('display_name_html') };

    return (
      <span className='display-name'>
        <bdi><strong className='display-name__html' dangerouslySetInnerHTML={displayNameHtml} /></bdi> {withAcct && <span className='display-name__account'>@{account.get('acct')}</span>}
      </span>
    );
  }

}