about summary refs log tree commit diff
path: root/app/assets/javascripts/components/components/display_name.jsx
blob: 8bffca5515e148e5a6f34a108956dfabd961ac0d (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
28
import ImmutablePropTypes from 'react-immutable-proptypes';
import PureRenderMixin    from 'react-addons-pure-render-mixin';

const DisplayName = React.createClass({

  propTypes: {
    account: ImmutablePropTypes.map.isRequired
  },

  mixins: [PureRenderMixin],

  render () {
    let displayName = this.props.account.get('display_name');

    if (displayName.length === 0) {
      displayName = this.props.account.get('username');
    }

    return (
      <span style={{ display: 'block', maxWidth: '100%', overflow: 'hidden', whiteSpace: 'nowrap', textOverflow: 'ellipsis' }}>
        <strong style={{ fontWeight: 'bold' }}>{displayName}</strong> <span style={{ fontSize: '14px' }}>@{this.props.account.get('acct')}</span>
      </span>
    );
  }

});

export default DisplayName;