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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
/*!
* Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
import React from 'react';
import classnames from 'classnames';
import Collapse from 'react-bootstrap/lib/Collapse.js';
class NavigationSideBar extends React.Component {
static PropTypes = {
activeItemId: React.PropTypes.string.isRequired,
onSelect: React.PropTypes.func,
onToggle: React.PropTypes.func,
groups: React.PropTypes.array
};
constructor(props) {
super(props);
this.state = {
activeItemId: null
};
this.handleItemClicked = this.handleItemClicked.bind(this);
}
render() {
let {groups, activeItemId} = this.props;
return (
<div className='navigation-side-content'>
{groups.map(group => (
<NavigationMenu menu={group} activeItemId={activeItemId} onNavigationItemClick={this.handleItemClicked} key={'menu_' + group.id} />
))}
</div>
);
}
handleItemClicked(event, item) {
event.stopPropagation();
if(this.props.onToggle) {
this.props.onToggle(this.props.groups, item.id);
}
if(item.onSelect) {
item.onSelect();
}
if(this.props.onSelect) {
this.props.onSelect(item);
}
}
}
class NavigationMenu extends React.Component {
static PropTypes = {
activeItemId: React.PropTypes.string.isRequired,
onNavigationItemClick: React.PropTypes.func,
menu: React.PropTypes.array
};
render() {
const {menu, activeItemId, onNavigationItemClick} = this.props;
return (
<div className='navigation-group' key={menu.id}>
<NavigationMenuHeader title={menu.name} />
<NavigationMenuItems items={menu.items} activeItemId={activeItemId} onNavigationItemClick={onNavigationItemClick} />
</div>);
}
}
function NavigationMenuHeader(props) {
return <div className='group-name' data-test-id='navbar-group-name'>{props.title}</div>;
}
function NavigationMenuItems(props) {
const {items, activeItemId, onNavigationItemClick} = props;
return (
<div className='navigation-group-items'>
{
items && items.map(item => (<NavigationMenuItem key={'menuItem_' + item.id} item={item} activeItemId={activeItemId} onNavigationItemClick={onNavigationItemClick} />))
}
</div>
);
}
function NavigationMenuItem(props) {
const {onNavigationItemClick, item, activeItemId} = props;
const isGroup = item.items && item.items.length > 0;
return (
<div className={classnames('navigation-group-item', {'selected-item': item.id === activeItemId})} key={'item_' + item.id}>
<NavigationLink item={item} activeItemId={activeItemId} onClick={onNavigationItemClick} />
{isGroup && <Collapse in={item.expanded} data-test-id={'navigation-group-' + item.id}>
<div>
{item.items.map(subItem => (<NavigationMenuItem key={'menuItem_' + subItem.id} item={subItem} onNavigationItemClick={onNavigationItemClick} activeItemId={activeItemId} />)) }
</div>
</Collapse>
}
</div>
);
}
function NavigationLink(props) {
const {item, activeItemId, onClick} = props;
return (
<div
key={'navAction_' + item.id}
className={classnames('navigation-group-item-name', {
'selected': item.id === activeItemId,
'disabled': item.disabled,
'bold-name': item.expanded,
'hidden': item.hidden
})}
onClick={(event) => onClick(event, item)}
data-test-id={'navbar-group-item-' + item.id}>
{item.name}
</div>
);
}
export default NavigationSideBar;
|