hometown/app/assets/javascripts/components/components/display_name.jsx

26 lines
692 B
React
Raw Normal View History

2016-09-01 12:12:11 +00:00
import ImmutablePropTypes from 'react-immutable-proptypes';
const DisplayName = React.createClass({
propTypes: {
account: ImmutablePropTypes.map.isRequired
},
render () {
let displayName = this.props.account.get('display_name');
if (displayName.length === 0) {
displayName = this.props.account.get('username');
}
2016-09-01 12:12:11 +00:00
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>
2016-09-01 12:12:11 +00:00
</span>
);
}
});
export default DisplayName;