blob: cbd757356931eada9b4a4838a16f80343f5beeae (
plain)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import $ from 'jquery';
import * as UserAgent from 'utils/user_agent.jsx';
import PropTypes from 'prop-types';
import React from 'react';
export default class SettingsSidebar extends React.Component {
constructor(props) {
super(props);
this.handleClick = this.handleClick.bind(this);
}
handleClick(tab, e) {
e.preventDefault();
this.props.updateTab(tab.name);
$(e.target).closest('.settings-modal').addClass('display--content');
}
componentDidMount() {
if (UserAgent.isFirefox()) {
$('.settings-modal .settings-table .nav').addClass('position--top');
}
}
render() {
const tabList = this.props.tabs.map((tab) => {
const key = `${tab.name}_li`;
let className = '';
if (this.props.activeTab === tab.name) {
className = 'active';
}
return (
<li
key={key}
className={className}
>
<a
href='#'
onClick={this.handleClick.bind(null, tab)}
>
<i className={tab.icon}/>
{tab.uiName}
</a>
</li>
);
});
return (
<div>
<ul className='nav nav-pills nav-stacked'>
{tabList}
</ul>
</div>
);
}
}
SettingsSidebar.propTypes = {
tabs: PropTypes.arrayOf(PropTypes.shape({
name: PropTypes.string.isRequired,
uiName: PropTypes.string.isRequired,
icon: PropTypes.string.isRequired
})).isRequired,
activeTab: PropTypes.string,
updateTab: PropTypes.func.isRequired
};
|