blob: 64aa6bc835cf8bda8944a2701df3c5c3e4b49808 [file] [log] [blame]
sebdetc8d61302019-07-04 15:50:34 +02001/*-
2 * ============LICENSE_START=======================================================
3 * ONAP CLAMP
4 * ================================================================================
5 * Copyright (C) 2019 AT&T Intellectual Property. All rights
6 * reserved.
7 * ================================================================================
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 * ============LICENSE_END============================================
20 * ===================================================================
21 *
22 */
23import React from 'react';
24import Navbar from 'react-bootstrap/Navbar';
25import NavDropdown from 'react-bootstrap/NavDropdown';
26import 'bootstrap-css-only/css/bootstrap.min.css';
27import styled from 'styled-components';
28
29const StyledNavDropdownItem = styled(NavDropdown.Item)`
30 color: ${props => props.theme.fontNormal};
31 :hover {
32 background-color: ${props => props.theme.loopViewerHeaderBackgroundColor};
33 color: ${props => props.theme.loopViewerHeaderFontColor}
34 }
35`;
36
37export default class MenuBar extends React.Component {
xuegao7c7323d2019-07-09 11:52:20 +020038
sebdetc8d61302019-07-04 15:50:34 +020039 render () {
40 return (
41 <Navbar.Collapse id="basic-navbar-nav" className="justify-content-center">
42 <NavDropdown title="Closed Loop" id="basic-nav-dropdown">
xuegaof248df62019-07-15 15:16:18 +020043 <StyledNavDropdownItem href="/openLoop">Open CL</StyledNavDropdownItem>
sebdetc8d61302019-07-04 15:50:34 +020044 <StyledNavDropdownItem href="#action/3.2">Properties CL</StyledNavDropdownItem>
sebdet2dacb9b2019-07-17 13:48:44 +020045 <StyledNavDropdownItem href="/closeLoop">Close Model</StyledNavDropdownItem>
sebdetc8d61302019-07-04 15:50:34 +020046 </NavDropdown>
47 <NavDropdown title="Manage" id="basic-nav-dropdown">
sebdet4946e5b2019-07-10 12:32:36 +020048 <StyledNavDropdownItem href="/operationalPolicyModal">Submit</StyledNavDropdownItem>
sebdetc8d61302019-07-04 15:50:34 +020049 <StyledNavDropdownItem href="#action/3.2">Stop</StyledNavDropdownItem>
50 <StyledNavDropdownItem href="#action/3.3">Restart</StyledNavDropdownItem>
51 <StyledNavDropdownItem href="#action/3.3">Delete</StyledNavDropdownItem>
52 <StyledNavDropdownItem href="#action/3.3">Deploy</StyledNavDropdownItem>
53 <StyledNavDropdownItem href="#action/3.3">UnDeploy</StyledNavDropdownItem>
54 </NavDropdown>
55 <NavDropdown title="View" id="basic-nav-dropdown">
56 <StyledNavDropdownItem href="#action/3.1">Refresh Status</StyledNavDropdownItem>
57 </NavDropdown>
58 <NavDropdown title="Help" id="basic-nav-dropdown">
sebdet4946e5b2019-07-10 12:32:36 +020059 <StyledNavDropdownItem href="https://wiki.onap.org/" target="_blank">Wiki</StyledNavDropdownItem>
60 <StyledNavDropdownItem href="mailto:onap-discuss@lists.onap.org?subject=CLAMP&body=Please send us suggestions or feature enhancements or defect. If possible, please send us the steps to replicate any defect.">Contact Us</StyledNavDropdownItem>
sebdetc8d61302019-07-04 15:50:34 +020061 <StyledNavDropdownItem href="#action/3.3">User Info</StyledNavDropdownItem>
62 </NavDropdown>
63 </Navbar.Collapse>
sebdet4946e5b2019-07-10 12:32:36 +020064 );
sebdetc8d61302019-07-04 15:50:34 +020065 }
66}