Skip to content
Extraits de code Groupes Projets
navigation_bar.js 1,45 ko
Newer Older
  • Learn to ignore specific revisions
  • import React from 'react';
    
    import PropTypes from 'prop-types';
    
    import ImmutablePropTypes from 'react-immutable-proptypes';
    
    import Avatar from '../../../components/avatar';
    
    import IconButton from '../../../components/icon_button';
    
    import Permalink from '../../../components/permalink';
    
    import { FormattedMessage } from 'react-intl';
    
    import ImmutablePureComponent from 'react-immutable-pure-component';
    
    export default class NavigationBar extends ImmutablePureComponent {
    
        account: ImmutablePropTypes.map.isRequired,
    
        onClose: PropTypes.func,
    
          <div className='navigation-bar'>
    
            <Permalink href={this.props.account.get('url')} to={`/accounts/${this.props.account.get('id')}`}>
    
              <span style={{ display: 'none' }}>{this.props.account.get('acct')}</span>
    
            <div className='navigation-bar__profile'>
    
              <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>
    
              <a href='/settings/profile' className='navigation-bar__profile-edit'><FormattedMessage id='navigation_bar.edit_profile' defaultMessage='Edit profile' /></a>
    
    
            <IconButton title='' icon='close' onClick={this.props.onClose} />