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.

49 lines
2.0 KiB

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