2017-05-03 02:04:16 +02:00
|
|
|
import React from 'react';
|
2017-07-21 01:38:24 +02:00
|
|
|
import PropTypes from 'prop-types';
|
2016-09-13 02:24:40 +02:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2016-12-02 15:05:50 +01:00
|
|
|
import Avatar from '../../../components/avatar';
|
2017-07-21 01:38:24 +02:00
|
|
|
import IconButton from '../../../components/icon_button';
|
2016-12-02 15:05:50 +01:00
|
|
|
import Permalink from '../../../components/permalink';
|
2016-11-16 17:20:52 +01:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2017-05-03 02:04:16 +02:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2016-09-13 02:24:40 +02:00
|
|
|
|
2017-06-23 19:36:54 +02:00
|
|
|
export default class NavigationBar extends ImmutablePureComponent {
|
2016-09-13 02:24:40 +02:00
|
|
|
|
2017-05-12 14:44:10 +02:00
|
|
|
static propTypes = {
|
2017-05-20 17:31:47 +02:00
|
|
|
account: ImmutablePropTypes.map.isRequired,
|
2017-07-21 01:38:24 +02:00
|
|
|
onClose: PropTypes.func.isRequired,
|
2017-05-12 14:44:10 +02:00
|
|
|
};
|
|
|
|
|
2016-09-13 02:24:40 +02:00
|
|
|
render () {
|
|
|
|
return (
|
2017-02-09 01:20:09 +01:00
|
|
|
<div className='navigation-bar'>
|
2017-05-03 02:04:16 +02:00
|
|
|
<Permalink href={this.props.account.get('url')} to={`/accounts/${this.props.account.get('id')}`}>
|
2017-07-28 00:54:48 +02:00
|
|
|
<span style={{ display: 'none' }}>{this.props.account.get('acct')}</span>
|
2017-08-06 20:59:19 +02:00
|
|
|
<Avatar account={this.props.account} size={40} />
|
2017-05-03 02:04:16 +02:00
|
|
|
</Permalink>
|
2016-09-13 02:24:40 +02:00
|
|
|
|
2017-04-23 04:26:55 +02:00
|
|
|
<div className='navigation-bar__profile'>
|
2017-04-25 04:45:27 +02:00
|
|
|
<Permalink href={this.props.account.get('url')} to={`/accounts/${this.props.account.get('id')}`}>
|
|
|
|
<strong className='navigation-bar__profile-account'>@{this.props.account.get('acct')}</strong>
|
|
|
|
</Permalink>
|
2017-05-03 02:04:16 +02:00
|
|
|
|
2017-04-23 04:26:55 +02:00
|
|
|
<a href='/settings/profile' className='navigation-bar__profile-edit'><FormattedMessage id='navigation_bar.edit_profile' defaultMessage='Edit profile' /></a>
|
2016-09-13 02:24:40 +02:00
|
|
|
</div>
|
2017-07-21 01:38:24 +02:00
|
|
|
|
|
|
|
<IconButton title='' icon='close' onClick={this.props.onClose} />
|
2016-09-13 02:24:40 +02:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 20:05:35 +02:00
|
|
|
}
|