91 lines
		
	
	
	
		
			2.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			91 lines
		
	
	
	
		
			2.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import { PureComponent } from 'react';
 | 
						|
import { WordmarkLogo, SymbolLogo } from 'flavours/glitch/components/logo';
 | 
						|
import { Link, withRouter } from 'react-router-dom';
 | 
						|
import { FormattedMessage } from 'react-intl';
 | 
						|
import { registrationsOpen, me } from 'flavours/glitch/initial_state';
 | 
						|
import { Avatar } from 'flavours/glitch/components/avatar';
 | 
						|
import Permalink from 'flavours/glitch/components/permalink';
 | 
						|
import PropTypes from 'prop-types';
 | 
						|
import { connect } from 'react-redux';
 | 
						|
import { openModal } from 'flavours/glitch/actions/modal';
 | 
						|
 | 
						|
const Account = connect(state => ({
 | 
						|
  account: state.getIn(['accounts', me]),
 | 
						|
}))(({ account }) => (
 | 
						|
  <Permalink href={account.get('url')} to={`/@${account.get('acct')}`} title={account.get('acct')}>
 | 
						|
    <Avatar account={account} size={35} />
 | 
						|
  </Permalink>
 | 
						|
));
 | 
						|
 | 
						|
const mapDispatchToProps = (dispatch) => ({
 | 
						|
  openClosedRegistrationsModal() {
 | 
						|
    dispatch(openModal('CLOSED_REGISTRATIONS'));
 | 
						|
  },
 | 
						|
});
 | 
						|
 | 
						|
class Header extends PureComponent {
 | 
						|
 | 
						|
  static contextTypes = {
 | 
						|
    identity: PropTypes.object,
 | 
						|
  };
 | 
						|
 | 
						|
  static propTypes = {
 | 
						|
    openClosedRegistrationsModal: PropTypes.func,
 | 
						|
    location: PropTypes.object,
 | 
						|
  };
 | 
						|
 | 
						|
  render () {
 | 
						|
    const { signedIn } = this.context.identity;
 | 
						|
    const { location, openClosedRegistrationsModal } = this.props;
 | 
						|
 | 
						|
    let content;
 | 
						|
 | 
						|
    if (signedIn) {
 | 
						|
      content = (
 | 
						|
        <>
 | 
						|
          {location.pathname !== '/publish' && <Link to='/publish' className='button'><FormattedMessage id='compose_form.publish_form' defaultMessage='Publish' /></Link>}
 | 
						|
          <Account />
 | 
						|
        </>
 | 
						|
      );
 | 
						|
    } else {
 | 
						|
      let signupButton;
 | 
						|
 | 
						|
      if (registrationsOpen) {
 | 
						|
        signupButton = (
 | 
						|
          <a href='/auth/sign_up' className='button'>
 | 
						|
            <FormattedMessage id='sign_in_banner.create_account' defaultMessage='Create account' />
 | 
						|
          </a>
 | 
						|
        );
 | 
						|
      } else {
 | 
						|
        signupButton = (
 | 
						|
          <button className='button' onClick={openClosedRegistrationsModal}>
 | 
						|
            <FormattedMessage id='sign_in_banner.create_account' defaultMessage='Create account' />
 | 
						|
          </button>
 | 
						|
        );
 | 
						|
      }
 | 
						|
 | 
						|
      content = (
 | 
						|
        <>
 | 
						|
          {signupButton}
 | 
						|
          <a href='/auth/sign_in' className='button button-tertiary'><FormattedMessage id='sign_in_banner.sign_in' defaultMessage='Login' /></a>
 | 
						|
        </>
 | 
						|
      );
 | 
						|
    }
 | 
						|
 | 
						|
    return (
 | 
						|
      <div className='ui__header'>
 | 
						|
        <Link to='/' className='ui__header__logo'>
 | 
						|
          <WordmarkLogo />
 | 
						|
          <SymbolLogo />
 | 
						|
        </Link>
 | 
						|
 | 
						|
        <div className='ui__header__links'>
 | 
						|
          {content}
 | 
						|
        </div>
 | 
						|
      </div>
 | 
						|
    );
 | 
						|
  }
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
export default withRouter(connect(null, mapDispatchToProps)(Header));
 |