Adding manage dictionary UI feature
[clamp.git] / ui-react / src / components / menu / MenuBar.js
index 811a48b..4eafaa4 100644 (file)
  *
  */
 import React from 'react';
+import Nav from 'react-bootstrap/Nav';
 import Navbar from 'react-bootstrap/Navbar';
 import NavDropdown from 'react-bootstrap/NavDropdown';
+import OnapConstants from '../../utils/OnapConstants';
 import 'bootstrap-css-only/css/bootstrap.min.css';
 import styled from 'styled-components';
-import { Link } from 'react-router-dom'
-
-const StyledNavDropdownItem = styled(NavDropdown.Item)`
-       color: ${props => props.theme.menuFontColor};
-       background-color: ${props => props.theme.menuBackgroundColor};
-       :hover {
-                       background-color: ${props => props.theme.menuHighlightedBackgroundColor};
-                       color:  ${props => props.theme.menuHighlightedFontColor};
-       }
-`;
+import { Link } from 'react-router-dom';
 
 const StyledLink = styled(Link)`
-       color: ${props => props.theme.menuColor};
+       color: ${props => props.theme.menuFontColor};
        background-color: ${props => props.theme.menuBackgroundColor};
        font-weight: normal;
        display: block;
@@ -48,37 +41,84 @@ const StyledLink = styled(Link)`
        white-space: nowrap;
        border: 0;
        :hover {
-                       text-decoration: none;
-                       background-color: ${props => props.theme.loopViewerHeaderBackgroundColor};
-                       color:  ${props => props.theme.loopViewerHeaderFontColor};
+               text-decoration: none;
+               background-color: ${props => props.theme.menuHighlightedBackgroundColor};
+               color:  ${props => props.theme.menuHighlightedFontColor};
+       }
+`;
+const StyledNavLink = styled(Nav.Link)`
+       color: ${props => props.theme.menuFontColor};
+       background-color: ${props => props.theme.menuBackgroundColor};
+       font-weight: normal;
+       padding: .25rem 1.5rem;
+       :hover {
+               background-color: ${props => props.theme.menuHighlightedBackgroundColor};
+               color:  ${props => props.theme.menuHighlightedFontColor};
+       }
+`;
+
+const StyledNavDropdown = styled(NavDropdown)`
+       color: ${props => props.theme.menuFontColor};
+       & .dropdown-toggle {
+       color: ${props => props.theme.menuFontColor};
+       background-color: ${props => props.theme.backgroundColor};
+       font-weight: normal;
+               :hover {
+                               font-weight: bold;
+               }
        }
 `;
 
 export default class MenuBar extends React.Component {
+       state = {
+               loopName: this.props.loopName,
+               disabled: true
+       };
+
+       componentWillReceiveProps(newProps) {
+               if (newProps.loopName !== OnapConstants.defaultLoopName) {
+                       this.setState({ disabled: false });
+               } else {
+                       this.setState({ disabled: true });
+               }
+       }
+
        render () {
                return (
-                               <Navbar.Collapse id="basic-navbar-nav" className="justify-content-center">
-                                       <NavDropdown title="Closed Loop" id="basic-nav-dropdown">
-                                               <StyledNavDropdownItem as={StyledLink} to="/openLoop">Open CL</StyledNavDropdownItem>
-                                               <StyledNavDropdownItem as={StyledLink} to="/loopProperties">Properties CL</StyledNavDropdownItem>
-                                               <StyledNavDropdownItem as={StyledLink} to="/closeLoop">Close Model</StyledNavDropdownItem>
-                                       </NavDropdown>
-                                       <NavDropdown title="Manage" id="basic-nav-dropdown">
-                                               <StyledNavDropdownItem as={StyledLink} to="/operationalPolicyModal">Submit</StyledNavDropdownItem>
-                                               <StyledNavDropdownItem as={StyledLink} to="#action/3.2">Stop</StyledNavDropdownItem>
-                                               <StyledNavDropdownItem as={StyledLink} to="#action/3.3">Restart</StyledNavDropdownItem>
-                                               <StyledNavDropdownItem as={StyledLink} to="#action/3.3">Delete</StyledNavDropdownItem>
-                                               <StyledNavDropdownItem as={StyledLink} to="#action/3.3">Deploy</StyledNavDropdownItem>
-                                               <StyledNavDropdownItem as={StyledLink} to="#action/3.3">UnDeploy</StyledNavDropdownItem>
-                                       </NavDropdown>
-                                       <NavDropdown title="View" id="basic-nav-dropdown">
-                                               <StyledNavDropdownItem as={StyledLink} to="#action/3.1">Refresh Status</StyledNavDropdownItem>
-                                       </NavDropdown>
-                                       <NavDropdown title="Help" id="basic-nav-dropdown">
-                                               <StyledNavDropdownItem href="https://wiki.onap.org/" target="_blank">Wiki</StyledNavDropdownItem>
-                                               <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>
-                                               <StyledNavDropdownItem as={StyledLink} to="/userInfo">User Info</StyledNavDropdownItem>
-                                       </NavDropdown>
+
+                               <Navbar.Collapse>
+                                       <StyledNavDropdown title="Loop Templates">
+                                                       <NavDropdown.Item as={StyledLink} to="/ViewLoopTemplatesModal">View All Templates</NavDropdown.Item>
+                                       </StyledNavDropdown>
+                                       <StyledNavDropdown title="Policy Models">
+                           <NavDropdown.Item as={StyledLink} to="/uploadToscaPolicyModal">Upload Tosca Model</NavDropdown.Item>
+                               <NavDropdown.Item as={StyledLink} to="/viewToscaPolicyModal">View Tosca Models</NavDropdown.Item>
+                    </StyledNavDropdown>
+                    <StyledNavDropdown title="Dictionaries">
+                            <NavDropdown.Item as={StyledLink} to="/ManageDictionaries">Manage Dictionaries</NavDropdown.Item>
+                    </StyledNavDropdown>
+                                       <StyledNavDropdown title="Loop Instance">
+                                               <NavDropdown.Item as={StyledLink} to="/createLoop">Create</NavDropdown.Item>
+                                                       <NavDropdown.Item as={StyledLink} to="/openLoop">Open</NavDropdown.Item>
+                                                       <NavDropdown.Item as={StyledLink} to="/loopProperties" disabled={this.state.disabled}>Properties</NavDropdown.Item>
+                                                       <NavDropdown.Item as={StyledLink} to="/closeLoop" disabled={this.state.disabled}>Close</NavDropdown.Item>
+                                                       <NavDropdown.Item as={StyledLink} to="/modifyLoop" disabled={this.state.disabled}>Modify</NavDropdown.Item>
+                                                       <NavDropdown.Item as={StyledLink} to="/refreshStatus" disabled={this.state.disabled}>Refresh Status</NavDropdown.Item>
+                                       </StyledNavDropdown>
+                                       <StyledNavDropdown title="Loop Operations">
+                                                       <NavDropdown.Item as={StyledLink} to="/submit" disabled={this.state.disabled}>Create and deploy to Policy Engine(SUBMIT)</NavDropdown.Item>
+                                                       <NavDropdown.Item as={StyledLink} to="/stop" disabled={this.state.disabled}>Undeploy from Policy Engine (STOP)</NavDropdown.Item>
+                                                       <NavDropdown.Item as={StyledLink} to="/restart" disabled={this.state.disabled}>ReDeploy to Policy Engine (RESTART)</NavDropdown.Item>
+                                                       <NavDropdown.Item as={StyledLink} to="/delete" disabled={this.state.disabled}>Delete loop instance (DELETE)</NavDropdown.Item>
+                                                       <NavDropdown.Divider />
+                                                       <NavDropdown.Item as={StyledLink} to="/deploy" disabled={this.state.disabled}>Deploy to DCAE (DEPLOY)</NavDropdown.Item>
+                                                       <NavDropdown.Item as={StyledLink} to="/undeploy" disabled={this.state.disabled}>UnDeploy to DCAE (UNDEPLOY)</NavDropdown.Item>
+                                       </StyledNavDropdown>
+                                       <StyledNavDropdown title="Help">
+                                                       <StyledNavLink href="https://wiki.onap.org/" target="_blank">Wiki</StyledNavLink>
+                                                       <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>
+                                                       <NavDropdown.Item as={StyledLink} to="/userInfo">User Info</NavDropdown.Item>
+                                       </StyledNavDropdown>
                                </Navbar.Collapse>
                );
        }