2022-10-05 05:13:23 +11:00
|
|
|
import React from 'react';
|
|
|
|
import Logo from 'mastodon/components/logo';
|
2022-10-24 00:58:24 +11:00
|
|
|
import { Link, withRouter } from 'react-router-dom';
|
2022-10-05 05:13:23 +11:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
|
import { registrationsOpen, me } from 'mastodon/initial_state';
|
|
|
|
import Avatar from 'mastodon/components/avatar';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
|
|
|
|
const Account = connect(state => ({
|
|
|
|
account: state.getIn(['accounts', me]),
|
|
|
|
}))(({ account }) => (
|
2022-11-14 07:10:20 +11:00
|
|
|
<Link to={`/@${account.get('acct')}`} title={account.get('acct')}>
|
2022-10-05 05:13:23 +11:00
|
|
|
<Avatar account={account} size={35} />
|
2022-11-14 07:10:20 +11:00
|
|
|
</Link>
|
2022-10-05 05:13:23 +11:00
|
|
|
));
|
|
|
|
|
2022-10-24 00:58:24 +11:00
|
|
|
export default @withRouter
|
|
|
|
class Header extends React.PureComponent {
|
2022-10-05 05:13:23 +11:00
|
|
|
|
|
|
|
static contextTypes = {
|
|
|
|
identity: PropTypes.object,
|
|
|
|
};
|
|
|
|
|
2022-10-24 00:58:24 +11:00
|
|
|
static propTypes = {
|
|
|
|
location: PropTypes.object,
|
|
|
|
};
|
|
|
|
|
2022-10-05 05:13:23 +11:00
|
|
|
render () {
|
|
|
|
const { signedIn } = this.context.identity;
|
2022-10-24 00:58:24 +11:00
|
|
|
const { location } = this.props;
|
2022-10-05 05:13:23 +11:00
|
|
|
|
|
|
|
let content;
|
|
|
|
|
|
|
|
if (signedIn) {
|
2022-10-24 00:58:24 +11:00
|
|
|
content = (
|
|
|
|
<>
|
2022-11-17 20:53:38 +11:00
|
|
|
{location.pathname !== '/publish' && <Link to='/publish' className='button'><FormattedMessage id='compose_form.publish_form' defaultMessage='Publish' /></Link>}
|
2022-10-24 00:58:24 +11:00
|
|
|
<Account />
|
|
|
|
</>
|
|
|
|
);
|
2022-10-05 05:13:23 +11:00
|
|
|
} else {
|
|
|
|
content = (
|
2022-10-24 00:58:24 +11:00
|
|
|
<>
|
2022-10-05 05:13:23 +11:00
|
|
|
<a href='/auth/sign_in' className='button'><FormattedMessage id='sign_in_banner.sign_in' defaultMessage='Sign in' /></a>
|
|
|
|
<a href={registrationsOpen ? '/auth/sign_up' : 'https://joinmastodon.org/servers'} className='button button-tertiary'><FormattedMessage id='sign_in_banner.create_account' defaultMessage='Create account' /></a>
|
2022-10-24 00:58:24 +11:00
|
|
|
</>
|
2022-10-05 05:13:23 +11:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='ui__header'>
|
|
|
|
<Link to='/' className='ui__header__logo'><Logo /></Link>
|
|
|
|
|
|
|
|
<div className='ui__header__links'>
|
|
|
|
{content}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|