You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
2.5 KiB

  1. import PureRenderMixin from 'react-addons-pure-render-mixin';
  2. import ImmutablePropTypes from 'react-immutable-proptypes';
  3. import emojify from '../../../emoji';
  4. import escapeTextContentForBrowser from 'react/lib/escapeTextContentForBrowser';
  5. import { FormattedMessage } from 'react-intl';
  6. const Header = React.createClass({
  7. propTypes: {
  8. account: ImmutablePropTypes.map.isRequired,
  9. me: React.PropTypes.number.isRequired
  10. },
  11. mixins: [PureRenderMixin],
  12. render () {
  13. const { account, me } = this.props;
  14. let displayName = account.get('display_name');
  15. let info = '';
  16. if (displayName.length === 0) {
  17. displayName = account.get('username');
  18. }
  19. if (me !== account.get('id') && account.getIn(['relationship', 'followed_by'])) {
  20. info = <span style={{ position: 'absolute', top: '10px', right: '10px', opacity: '0.7', display: 'inline-block', verticalAlign: 'top', background: 'rgba(0, 0, 0, 0.4)', color: '#fff', textTransform: 'uppercase', fontSize: '11px', fontWeight: '500', padding: '4px', borderRadius: '4px' }}><FormattedMessage id='account.follows_you' defaultMessage='Follows you' /></span>
  21. }
  22. const content = { __html: emojify(account.get('note')) };
  23. const displayNameHTML = { __html: emojify(escapeTextContentForBrowser(displayName)) };
  24. return (
  25. <div style={{ flex: '0 0 auto', background: '#2f3441', textAlign: 'center', backgroundImage: `url(${account.get('header')})`, backgroundSize: 'cover', position: 'relative' }}>
  26. <div style={{ background: 'rgba(47, 52, 65, 0.9)', padding: '20px 10px' }}>
  27. <a href={account.get('url')} target='_blank' rel='noopener' style={{ display: 'block', color: 'inherit', textDecoration: 'none' }}>
  28. <div style={{ width: '90px', margin: '0 auto', marginBottom: '10px' }}>
  29. <img src={account.get('avatar')} alt='' style={{ display: 'block', width: '90px', height: '90px', borderRadius: '90px' }} />
  30. </div>
  31. <span style={{ display: 'inline-block', color: '#fff', fontSize: '20px', lineHeight: '27px', fontWeight: '500' }} className='account__header__display-name' dangerouslySetInnerHTML={displayNameHTML} />
  32. </a>
  33. <span style={{ fontSize: '14px', fontWeight: '400', display: 'block', color: '#2b90d9', marginBottom: '10px' }}>@{account.get('acct')}</span>
  34. <div style={{ color: '#616b86', fontSize: '14px' }} className='account__header__content' dangerouslySetInnerHTML={content} />
  35. {info}
  36. </div>
  37. </div>
  38. );
  39. }
  40. });
  41. export default Header;