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