import React from 'react';
import ImmutablePropTypes from 'react-immutable-proptypes';
export default class DisplayName extends React.PureComponent {
  static propTypes = {
    account: ImmutablePropTypes.map.isRequired,
    others: ImmutablePropTypes.list,
  };
  render () {
    const { account, others } = this.props;
    const displayNameHtml = { __html: account.get('display_name_html') };
    let suffix;
    if (others && others.size > 1) {
      suffix = `+${others.size}`;
    } else {
      suffix = @{account.get('acct')};
    }
    return (
      
        
        {suffix}
      
    );
  }
}