blob: 98c7bffcf583e43ab3265af756175255037ceac0 [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';
Ted Humphrey01e5fde2020-01-27 18:57:39 -050027import OnapConstants from '../../utils/OnapConstants';
sebdetc8d61302019-07-04 15:50:34 +020028import 'bootstrap-css-only/css/bootstrap.min.css';
29import styled from 'styled-components';
sebdetd0d65632019-08-26 05:47:01 -070030import { Link } from 'react-router-dom';
sebdetc8d61302019-07-04 15:50:34 +020031
sebdet8a02dd72019-07-31 17:11:11 +020032const StyledLink = styled(Link)`
sebdetd0d65632019-08-26 05:47:01 -070033 color: ${props => props.theme.menuFontColor};
sebdet8a02dd72019-07-31 17:11:11 +020034 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 {
sebdetd0d65632019-08-26 05:47:01 -070044 text-decoration: none;
45 background-color: ${props => props.theme.menuHighlightedBackgroundColor};
46 color: ${props => props.theme.menuHighlightedFontColor};
sebdetc8d61302019-07-04 15:50:34 +020047 }
48`;
xuegao5fe750c2019-08-06 13:03:53 +020049const StyledNavLink = styled(Nav.Link)`
sebdetd0d65632019-08-26 05:47:01 -070050 color: ${props => props.theme.menuFontColor};
xuegao5fe750c2019-08-06 13:03:53 +020051 background-color: ${props => props.theme.menuBackgroundColor};
sebdetd0d65632019-08-26 05:47:01 -070052 font-weight: normal;
xuegao5fe750c2019-08-06 13:03:53 +020053 padding: .25rem 1.5rem;
54 :hover {
sebdetd0d65632019-08-26 05:47:01 -070055 background-color: ${props => props.theme.menuHighlightedBackgroundColor};
56 color: ${props => props.theme.menuHighlightedFontColor};
xuegao5fe750c2019-08-06 13:03:53 +020057 }
58`;
sebdetd0d65632019-08-26 05:47:01 -070059
60const StyledNavDropdown = styled(NavDropdown)`
61 color: ${props => props.theme.menuFontColor};
62 & .dropdown-toggle {
63 color: ${props => props.theme.menuFontColor};
64 background-color: ${props => props.theme.backgroundColor};
65 font-weight: normal;
66 :hover {
67 font-weight: bold;
68 }
69 }
70`;
71
sebdetc8d61302019-07-04 15:50:34 +020072export default class MenuBar extends React.Component {
xuegao691e2b72019-08-16 11:07:24 +020073 state = {
74 loopName: this.props.loopName,
75 disabled: true
76 };
77
78 componentWillReceiveProps(newProps) {
Ted Humphrey01e5fde2020-01-27 18:57:39 -050079 if (newProps.loopName !== OnapConstants.defaultLoopName) {
xuegao691e2b72019-08-16 11:07:24 +020080 this.setState({ disabled: false });
81 } else {
82 this.setState({ disabled: true });
83 }
84 }
xuegao5fe750c2019-08-06 13:03:53 +020085
sebdetc8d61302019-07-04 15:50:34 +020086 render () {
sebdet8a02dd72019-07-31 17:11:11 +020087 return (
sebdetd0d65632019-08-26 05:47:01 -070088
xuegao5fe750c2019-08-06 13:03:53 +020089 <Navbar.Collapse>
drveerendraf6b26252019-10-31 12:45:30 -040090 <StyledNavDropdown title="Template">
ash742683a83e2a2020-01-31 15:40:15 +000091 <NavDropdown.Item as={StyledLink} to="/uploadToscaPolicyModal">Upload Tosca Policy Model</NavDropdown.Item>
92 <NavDropdown.Item as={StyledLink} to="/viewToscaPolicyModal">View Tosca Policy Models</NavDropdown.Item>
sebdet3b7f6692020-02-17 06:03:31 -080093 <NavDropdown.Item as={StyledLink} to="/ViewLoopTemplatesModal">View Loop Templates</NavDropdown.Item>
drveerendraf6b26252019-10-31 12:45:30 -040094 </StyledNavDropdown>
sebdetd0d65632019-08-26 05:47:01 -070095 <StyledNavDropdown title="Closed Loop">
xuegao5fe750c2019-08-06 13:03:53 +020096 <NavDropdown.Item as={StyledLink} to="/openLoop">Open CL</NavDropdown.Item>
xuegao691e2b72019-08-16 11:07:24 +020097 <NavDropdown.Item as={StyledLink} to="/loopProperties" disabled={this.state.disabled}>Properties CL</NavDropdown.Item>
98 <NavDropdown.Item as={StyledLink} to="/closeLoop" disabled={this.state.disabled}>Close Model</NavDropdown.Item>
sebdetd0d65632019-08-26 05:47:01 -070099 </StyledNavDropdown>
100 <StyledNavDropdown title="Manage">
xuegao691e2b72019-08-16 11:07:24 +0200101 <NavDropdown.Item as={StyledLink} to="/submit" disabled={this.state.disabled}>Submit</NavDropdown.Item>
102 <NavDropdown.Item as={StyledLink} to="/stop" disabled={this.state.disabled}>Stop</NavDropdown.Item>
103 <NavDropdown.Item as={StyledLink} to="/restart" disabled={this.state.disabled}>Restart</NavDropdown.Item>
104 <NavDropdown.Item as={StyledLink} to="/delete" disabled={this.state.disabled}>Delete</NavDropdown.Item>
105 <NavDropdown.Item as={StyledLink} to="/deploy" disabled={this.state.disabled}>Deploy</NavDropdown.Item>
106 <NavDropdown.Item as={StyledLink} to="/undeploy" disabled={this.state.disabled}>UnDeploy</NavDropdown.Item>
sebdetd0d65632019-08-26 05:47:01 -0700107 </StyledNavDropdown>
108 <StyledNavDropdown title="View">
xuegao691e2b72019-08-16 11:07:24 +0200109 <NavDropdown.Item as={StyledLink} to="/refreshStatus" disabled={this.state.disabled}>Refresh Status</NavDropdown.Item>
sebdetd0d65632019-08-26 05:47:01 -0700110 </StyledNavDropdown>
111 <StyledNavDropdown title="Help">
xuegao5fe750c2019-08-06 13:03:53 +0200112 <StyledNavLink href="https://wiki.onap.org/" target="_blank">Wiki</StyledNavLink>
113 <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>
114 <NavDropdown.Item as={StyledLink} to="/userInfo">User Info</NavDropdown.Item>
sebdetd0d65632019-08-26 05:47:01 -0700115 </StyledNavDropdown>
sebdet8a02dd72019-07-31 17:11:11 +0200116 </Navbar.Collapse>
117 );
118 }
sebdetc8d61302019-07-04 15:50:34 +0200119}