blob: 121787ffd8eb29263ca7d5fc32a13715f7766ec9 [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';
xuegao5fe750c2019-08-06 13:03:53 +020024import Nav from 'react-bootstrap/Nav';
sebdetc8d61302019-07-04 15:50:34 +020025import Navbar from 'react-bootstrap/Navbar';
26import NavDropdown from 'react-bootstrap/NavDropdown';
xuegao691e2b72019-08-16 11:07:24 +020027import LoopUI from '../../LoopUI';
sebdetc8d61302019-07-04 15:50:34 +020028import 'bootstrap-css-only/css/bootstrap.min.css';
29import styled from 'styled-components';
sebdet8a02dd72019-07-31 17:11:11 +020030import { Link } from 'react-router-dom'
sebdetc8d61302019-07-04 15:50:34 +020031
sebdet8a02dd72019-07-31 17:11:11 +020032const StyledLink = styled(Link)`
33 color: ${props => props.theme.menuColor};
34 background-color: ${props => props.theme.menuBackgroundColor};
35 font-weight: normal;
36 display: block;
37 width: 100%;
38 padding: .25rem 1.5rem;
39 clear: both;
40 text-align: inherit;
41 white-space: nowrap;
42 border: 0;
43 :hover {
44 text-decoration: none;
sebdetc8d61302019-07-04 15:50:34 +020045 background-color: ${props => props.theme.loopViewerHeaderBackgroundColor};
sebdet8a02dd72019-07-31 17:11:11 +020046 color: ${props => props.theme.loopViewerHeaderFontColor};
sebdetc8d61302019-07-04 15:50:34 +020047 }
48`;
xuegao5fe750c2019-08-06 13:03:53 +020049const StyledNavLink = styled(Nav.Link)`
50 color: ${props => props.theme.menuColor};
51 background-color: ${props => props.theme.menuBackgroundColor};
52 font-weight: normal;
53 padding: .25rem 1.5rem;
54 :hover {
55 background-color: ${props => props.theme.loopViewerHeaderBackgroundColor};
56 color: ${props => props.theme.loopViewerHeaderFontColor}
57 }
58`;
sebdetc8d61302019-07-04 15:50:34 +020059export default class MenuBar extends React.Component {
xuegao691e2b72019-08-16 11:07:24 +020060 state = {
61 loopName: this.props.loopName,
62 disabled: true
63 };
64
65 componentWillReceiveProps(newProps) {
66 if (newProps.loopName !== LoopUI.defaultLoopName) {
67 this.setState({ disabled: false });
68 } else {
69 this.setState({ disabled: true });
70 }
71 }
xuegao5fe750c2019-08-06 13:03:53 +020072
sebdetc8d61302019-07-04 15:50:34 +020073 render () {
sebdet8a02dd72019-07-31 17:11:11 +020074 return (
xuegao5fe750c2019-08-06 13:03:53 +020075 <Navbar.Collapse>
76 <NavDropdown title="Closed Loop">
77 <NavDropdown.Item as={StyledLink} to="/openLoop">Open CL</NavDropdown.Item>
xuegao691e2b72019-08-16 11:07:24 +020078 <NavDropdown.Item as={StyledLink} to="/loopProperties" disabled={this.state.disabled}>Properties CL</NavDropdown.Item>
79 <NavDropdown.Item as={StyledLink} to="/closeLoop" disabled={this.state.disabled}>Close Model</NavDropdown.Item>
sebdet8a02dd72019-07-31 17:11:11 +020080 </NavDropdown>
xuegao5fe750c2019-08-06 13:03:53 +020081 <NavDropdown title="Manage">
xuegao691e2b72019-08-16 11:07:24 +020082 <NavDropdown.Item as={StyledLink} to="/submit" disabled={this.state.disabled}>Submit</NavDropdown.Item>
83 <NavDropdown.Item as={StyledLink} to="/stop" disabled={this.state.disabled}>Stop</NavDropdown.Item>
84 <NavDropdown.Item as={StyledLink} to="/restart" disabled={this.state.disabled}>Restart</NavDropdown.Item>
85 <NavDropdown.Item as={StyledLink} to="/delete" disabled={this.state.disabled}>Delete</NavDropdown.Item>
86 <NavDropdown.Item as={StyledLink} to="/deploy" disabled={this.state.disabled}>Deploy</NavDropdown.Item>
87 <NavDropdown.Item as={StyledLink} to="/undeploy" disabled={this.state.disabled}>UnDeploy</NavDropdown.Item>
sebdetc8d61302019-07-04 15:50:34 +020088 </NavDropdown>
xuegao5fe750c2019-08-06 13:03:53 +020089 <NavDropdown title="View">
xuegao691e2b72019-08-16 11:07:24 +020090 <NavDropdown.Item as={StyledLink} to="/refreshStatus" disabled={this.state.disabled}>Refresh Status</NavDropdown.Item>
sebdetc8d61302019-07-04 15:50:34 +020091 </NavDropdown>
xuegao5fe750c2019-08-06 13:03:53 +020092 <NavDropdown title="Help">
93 <StyledNavLink href="https://wiki.onap.org/" target="_blank">Wiki</StyledNavLink>
94 <StyledNavLink 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</StyledNavLink>
95 <NavDropdown.Item as={StyledLink} to="/userInfo">User Info</NavDropdown.Item>
sebdet8a02dd72019-07-31 17:11:11 +020096 </NavDropdown>
97 </Navbar.Collapse>
98 );
99 }
sebdetc8d61302019-07-04 15:50:34 +0200100}