about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/features/compose/components/navigation_bar.js
blob: 5faf2b509f12f7091231ca9573b80f458b72d195 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import React from 'react';
import ImmutablePropTypes from 'react-immutable-proptypes';
import Avatar from 'flavours/glitch/components/avatar';
import Permalink from 'flavours/glitch/components/permalink';
import { FormattedMessage } from 'react-intl';
import ImmutablePureComponent from 'react-immutable-pure-component';
import { profileLink } from 'flavours/glitch/util/backend_links';

export default class NavigationBar extends ImmutablePureComponent {

  static propTypes = {
    account: ImmutablePropTypes.map.isRequired,
  };

  render () {
    return (
      <div className='drawer--account'>
        <Permalink className='avatar' href={this.props.account.get('url')} to={`/accounts/${this.props.account.get('id')}`}>
          <span style={{ display: 'none' }}>{this.props.account.get('acct')}</span>
          <Avatar account={this.props.account} size={48} />
        </Permalink>

        <Permalink className='acct' href={this.props.account.get('url')} to={`/accounts/${this.props.account.get('id')}`}>
          <strong>@{this.props.account.get('acct')}</strong>
        </Permalink>

        { profileLink !== undefined && (
          <a
            className='edit'
            href={ profileLink }
          ><FormattedMessage id='navigation_bar.edit_profile' defaultMessage='Edit profile' /></a>
        )}

        <Permalink className='drafts' href='/tags/self.draft' to='/timelines/tag/self.draft'>
          <FormattedMessage id='navigation_bar.drafts' defaultMessage='Show drafts' />
        </Permalink>
      </div>
    );
  };
}