2017-07-20 19:38:24 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2023-05-23 11:15:17 -04:00
|
|
|
|
|
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
|
|
|
|
|
import { Link } from 'react-router-dom';
|
|
|
|
|
2016-09-12 20:24:40 -04:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2023-05-23 11:15:17 -04:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
|
|
|
|
2023-05-08 21:11:56 -04:00
|
|
|
import { Avatar } from '../../../components/avatar';
|
2023-05-23 11:15:17 -04:00
|
|
|
|
|
|
|
import ActionBar from './action_bar';
|
2016-09-12 20:24:40 -04:00
|
|
|
|
2017-06-23 13:36:54 -04:00
|
|
|
export default class NavigationBar extends ImmutablePureComponent {
|
2016-09-12 20:24:40 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static propTypes = {
|
2023-11-03 11:00:03 -04:00
|
|
|
account: ImmutablePropTypes.record.isRequired,
|
2019-08-26 12:24:10 -04:00
|
|
|
onLogout: PropTypes.func.isRequired,
|
2017-11-24 07:13:17 -05:00
|
|
|
onClose: PropTypes.func,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
2016-09-12 20:24:40 -04:00
|
|
|
render () {
|
2023-10-09 07:38:29 -04:00
|
|
|
const username = this.props.account.get('acct');
|
2016-09-12 20:24:40 -04:00
|
|
|
return (
|
2017-02-08 19:20:09 -05:00
|
|
|
<div className='navigation-bar'>
|
2023-07-21 07:20:14 -04:00
|
|
|
<Link to={`/@${username}`}>
|
|
|
|
<span style={{ display: 'none' }}>{username}</span>
|
2022-10-25 13:02:21 -04:00
|
|
|
<Avatar account={this.props.account} size={46} />
|
2022-11-13 15:10:20 -05:00
|
|
|
</Link>
|
2016-09-12 20:24:40 -04:00
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
<div className='navigation-bar__profile'>
|
2023-07-21 07:20:14 -04:00
|
|
|
<span>
|
|
|
|
<Link to={`/@${username}`}>
|
|
|
|
<strong className='navigation-bar__profile-account'>@{username}</strong>
|
|
|
|
</Link>
|
|
|
|
</span>
|
|
|
|
|
|
|
|
<span>
|
|
|
|
<a href='/settings/profile' className='navigation-bar__profile-edit'><FormattedMessage id='navigation_bar.edit_profile' defaultMessage='Edit profile' /></a>
|
|
|
|
</span>
|
2016-09-12 20:24:40 -04:00
|
|
|
</div>
|
2017-07-20 19:38:24 -04:00
|
|
|
|
2018-06-14 02:03:07 -04:00
|
|
|
<div className='navigation-bar__actions'>
|
2019-08-26 12:24:10 -04:00
|
|
|
<ActionBar account={this.props.account} onLogout={this.props.onLogout} />
|
2018-06-13 08:44:50 -04:00
|
|
|
</div>
|
2016-09-12 20:24:40 -04:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|