This repository has been archived on 2023-07-01. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/app/javascript/flavours/glitch/components/display_name.js

29 lines
806 B
JavaScript
Raw Normal View History

2017-12-29 23:55:06 +01:00
import classNames from 'classnames';
import PropTypes from 'prop-types';
import React from 'react';
2016-09-01 14:12:11 +02:00
import ImmutablePropTypes from 'react-immutable-proptypes';
export default class DisplayName extends React.PureComponent {
static propTypes = {
account: ImmutablePropTypes.map.isRequired,
2017-12-29 23:55:06 +01:00
className: PropTypes.string,
};
2016-09-01 14:12:11 +02:00
render () {
2017-12-29 23:55:06 +01:00
const {
account,
className,
} = this.props;
const computedClass = classNames('display-name', className);
const displayNameHtml = { __html: account.get('display_name_html') };
2016-09-01 14:12:11 +02:00
return (
2017-12-29 23:55:06 +01:00
<span className={computedClass}>
<strong className='display-name__html' dangerouslySetInnerHTML={displayNameHtml} /> <span className='display-name__account'>@{this.props.account.get('acct')}</span>
2016-09-01 14:12:11 +02:00
</span>
);
}
}