mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* PLT-5860 Updated copyright date in about modal * PLT-5860 Updated copyright notice in JSX files * PLT-5860 Updated copyright notice in go files * Fixed misc copyright dates * Fixed component snapshots
72 lines
2.0 KiB
JavaScript
72 lines
2.0 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 Client from 'client/web_client.jsx';
|
|
|
|
import {FormattedMessage} from 'react-intl';
|
|
|
|
import React from 'react';
|
|
|
|
export default class SidebarHeader extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.toggleDropdown = this.toggleDropdown.bind(this);
|
|
|
|
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={Client.getUsersRoute() + '/' + me.id + '/image?time=' + 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>
|
|
);
|
|
}
|
|
}
|