mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* Move system console to use v4 endpoints and redux * Rename logs dir to get past gitignore * Fix test email * Update brand unit test * Updates per feedback
70 lines
1.9 KiB
JavaScript
70 lines
1.9 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import $ from 'jquery';
|
|
import AdminNavbarDropdown from './admin_navbar_dropdown.jsx';
|
|
import UserStore from 'stores/user_store.jsx';
|
|
import {Client4} from 'mattermost-redux/client';
|
|
|
|
import {FormattedMessage} from 'react-intl';
|
|
|
|
import React from 'react';
|
|
|
|
export default class SidebarHeader extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.state = {};
|
|
}
|
|
|
|
toggleDropdown = (e) => {
|
|
e.preventDefault();
|
|
|
|
if (this.refs.dropdown.blockToggle) {
|
|
this.refs.dropdown.blockToggle = false;
|
|
return;
|
|
}
|
|
|
|
$('.team__header').find('.dropdown-toggle').dropdown('toggle');
|
|
}
|
|
|
|
render() {
|
|
var me = UserStore.getCurrentUser();
|
|
var profilePicture = null;
|
|
|
|
if (!me) {
|
|
return null;
|
|
}
|
|
|
|
if (me.last_picture_update) {
|
|
profilePicture = (
|
|
<img
|
|
className='user__picture'
|
|
src={Client4.getProfilePictureUrl(me.id, me.last_picture_update)}
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className='team__header theme'>
|
|
<a
|
|
href='#'
|
|
onClick={this.toggleDropdown}
|
|
>
|
|
{profilePicture}
|
|
<div className='header__info'>
|
|
<div className='user__name'>{'@' + me.username}</div>
|
|
<div className='team__name'>
|
|
<FormattedMessage
|
|
id='admin.sidebarHeader.systemConsole'
|
|
defaultMessage='System Console'
|
|
/>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
<AdminNavbarDropdown ref='dropdown'/>
|
|
</div>
|
|
);
|
|
}
|
|
}
|