2017-05-03 09:04:16 +09:00
|
|
|
import React from 'react';
|
2017-07-21 08:38:24 +09:00
|
|
|
import PropTypes from 'prop-types';
|
2016-09-13 09:24:40 +09:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2018-06-13 21:44:50 +09:00
|
|
|
import ActionBar from './action_bar';
|
2016-12-02 23:05:50 +09:00
|
|
|
import Avatar from '../../../components/avatar';
|
|
|
|
import Permalink from '../../../components/permalink';
|
2018-06-13 21:44:50 +09:00
|
|
|
import IconButton from '../../../components/icon_button';
|
2016-11-17 01:20:52 +09:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2017-05-03 09:04:16 +09:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
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 () {
|
|
|
|
return (
|
2017-02-09 09:20:09 +09:00
|
|
|
<div className='navigation-bar'>
|
2021-09-26 12:46:13 +09:00
|
|
|
<Permalink href={this.props.account.get('url')} to={`/@${this.props.account.get('acct')}`}>
|
2017-07-28 07:54:48 +09:00
|
|
|
<span style={{ display: 'none' }}>{this.props.account.get('acct')}</span>
|
2022-10-26 02:02:21 +09:00
|
|
|
<Avatar account={this.props.account} size={46} />
|
2017-05-03 09:04:16 +09:00
|
|
|
</Permalink>
|
2016-09-13 09:24:40 +09:00
|
|
|
|
2017-04-23 11:26:55 +09:00
|
|
|
<div className='navigation-bar__profile'>
|
2021-09-26 12:46:13 +09:00
|
|
|
<Permalink href={this.props.account.get('url')} to={`/@${this.props.account.get('acct')}`}>
|
2017-04-25 11:45:27 +09:00
|
|
|
<strong className='navigation-bar__profile-account'>@{this.props.account.get('acct')}</strong>
|
|
|
|
</Permalink>
|
2017-05-03 09:04:16 +09:00
|
|
|
|
2017-04-23 11:26:55 +09:00
|
|
|
<a href='/settings/profile' className='navigation-bar__profile-edit'><FormattedMessage id='navigation_bar.edit_profile' defaultMessage='Edit profile' /></a>
|
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'>
|
2018-06-13 21:44:50 +09:00
|
|
|
<IconButton className='close' title='' icon='close' onClick={this.props.onClose} />
|
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
|
|
|
}
|