mastodon/app/javascript/flavours/glitch/components/display_name.js

31 lines
824 B
JavaScript
Raw Normal View History

2018-01-05 22:04:13 -06:00
// Package imports.
2017-12-29 16:55:06 -06:00
import classNames from 'classnames';
import PropTypes from 'prop-types';
import React from 'react';
2016-09-01 07:12:11 -05:00
import ImmutablePropTypes from 'react-immutable-proptypes';
2018-01-05 22:04:13 -06:00
// The component.
export default function DisplayName ({
account,
className,
inline,
}) {
const computedClass = classNames('display-name', { inline }, className);
2016-09-01 07:12:11 -05:00
2018-01-05 22:04:13 -06:00
// The result.
return account ? (
<span className={computedClass}>
<bdi><strong className='display-name__html' dangerouslySetInnerHTML={{ __html: account.get('display_name_html') }} /></bdi>
2018-01-05 22:04:13 -06:00
{inline ? ' ' : null}
<span className='display-name__account'>@{account.get('acct')}</span>
</span>
) : null;
}
2018-01-05 22:04:13 -06:00
// Props.
DisplayName.propTypes = {
account: ImmutablePropTypes.map,
className: PropTypes.string,
inline: PropTypes.bool,
};