sebdet | c8d6130 | 2019-07-04 15:50:34 +0200 | [diff] [blame] | 1 | /*- |
| 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 | */ |
| 23 | |
| 24 | import React from 'react'; |
| 25 | import styled from 'styled-components'; |
sebdet | e44fdb1 | 2019-07-12 12:25:56 +0200 | [diff] [blame] | 26 | import MenuBar from './components/menu/MenuBar'; |
sebdet | c8d6130 | 2019-07-04 15:50:34 +0200 | [diff] [blame] | 27 | import Navbar from 'react-bootstrap/Navbar'; |
| 28 | import logo from './logo.png'; |
sebdet | e44fdb1 | 2019-07-12 12:25:56 +0200 | [diff] [blame] | 29 | import { GlobalClampStyle } from './theme/globalStyle.js'; |
Ted Humphrey | 01e5fde | 2020-01-27 18:57:39 -0500 | [diff] [blame] | 30 | import OnapConstants from './utils/OnapConstants'; |
sebdet | c8d6130 | 2019-07-04 15:50:34 +0200 | [diff] [blame] | 31 | |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 32 | import LoopSvg from './components/loop_viewer/svg/LoopSvg'; |
| 33 | import LoopLogs from './components/loop_viewer/logs/LoopLogs'; |
| 34 | import LoopStatus from './components/loop_viewer/status/LoopStatus'; |
sebdet | e44fdb1 | 2019-07-12 12:25:56 +0200 | [diff] [blame] | 35 | import UserService from './api/UserService'; |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 36 | import LoopCache from './api/LoopCache'; |
xuegao | ac42c4b | 2019-10-09 16:12:37 +0200 | [diff] [blame] | 37 | import LoopActionService from './api/LoopActionService'; |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 38 | |
xuegao | 691e2b7 | 2019-08-16 11:07:24 +0200 | [diff] [blame] | 39 | import { Route } from 'react-router-dom' |
sebdet | d2a4df0 | 2020-02-26 15:47:30 -0800 | [diff] [blame] | 40 | import CreateLoopModal from './components/dialogs/Loop/CreateLoopModal'; |
sebdet | 67c76a4 | 2019-11-15 17:33:44 +0100 | [diff] [blame] | 41 | import OpenLoopModal from './components/dialogs/Loop/OpenLoopModal'; |
sebdet | aa486be | 2020-02-18 02:00:11 -0800 | [diff] [blame] | 42 | import ModifyLoopModal from './components/dialogs/Loop/ModifyLoopModal'; |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 43 | import OperationalPolicyModal from './components/dialogs/OperationalPolicy/OperationalPolicyModal'; |
| 44 | import ConfigurationPolicyModal from './components/dialogs/ConfigurationPolicy/ConfigurationPolicyModal'; |
sebdet | d2a4df0 | 2020-02-26 15:47:30 -0800 | [diff] [blame] | 45 | import PolicyModal from './components/dialogs/Policy/PolicyModal'; |
sebdet | b13a790 | 2019-11-15 17:26:45 +0100 | [diff] [blame] | 46 | import LoopPropertiesModal from './components/dialogs/Loop/LoopPropertiesModal'; |
sebdet | 4dc849f | 2019-11-15 17:49:42 +0100 | [diff] [blame] | 47 | import UserInfoModal from './components/dialogs/UserInfoModal'; |
sebdet | 83ce076 | 2019-08-02 14:53:59 +0200 | [diff] [blame] | 48 | import LoopService from './api/LoopService'; |
ash74268 | 3a83e2a | 2020-01-31 15:40:15 +0000 | [diff] [blame] | 49 | import UploadToscaPolicyModal from './components/dialogs/Tosca/UploadToscaPolicyModal'; |
drveerendra | 684057e | 2019-11-11 19:37:39 -0500 | [diff] [blame] | 50 | import ViewToscaPolicyModal from './components/dialogs/Tosca/ViewToscaPolicyModal'; |
sebdet | 3b7f669 | 2020-02-17 06:03:31 -0800 | [diff] [blame] | 51 | import ViewLoopTemplatesModal from './components/dialogs/Tosca/ViewLoopTemplatesModal'; |
drveerendra | 5032095 | 2020-03-04 20:30:44 -0500 | [diff] [blame] | 52 | import ManageDictionaries from './components/dialogs/ManageDictionaries/ManageDictionaries'; |
sebdet | f9e2cee | 2019-08-09 18:36:09 +0200 | [diff] [blame] | 53 | import PerformAction from './components/dialogs/PerformActions'; |
| 54 | import RefreshStatus from './components/dialogs/RefreshStatus'; |
sebdet | 2e9ae12 | 2019-11-15 16:28:55 +0100 | [diff] [blame] | 55 | import DeployLoopModal from './components/dialogs/Loop/DeployLoopModal'; |
xuegao | 0efeb6b | 2019-10-07 14:36:34 +0200 | [diff] [blame] | 56 | import Alert from 'react-bootstrap/Alert'; |
sebdet | c8d6130 | 2019-07-04 15:50:34 +0200 | [diff] [blame] | 57 | |
sebdet | d0d6563 | 2019-08-26 05:47:01 -0700 | [diff] [blame] | 58 | import { Link } from 'react-router-dom'; |
| 59 | |
| 60 | const StyledMainDiv = styled.div` |
| 61 | background-color: ${props => props.theme.backgroundColor}; |
| 62 | ` |
| 63 | |
sebdet | 4946e5b | 2019-07-10 12:32:36 +0200 | [diff] [blame] | 64 | const ProjectNameStyled = styled.a` |
sebdet | c8d6130 | 2019-07-04 15:50:34 +0200 | [diff] [blame] | 65 | vertical-align: middle; |
| 66 | padding-left: 30px; |
sebdet | d0d6563 | 2019-08-26 05:47:01 -0700 | [diff] [blame] | 67 | font-size: 36px; |
| 68 | font-weight: bold; |
sebdet | c8d6130 | 2019-07-04 15:50:34 +0200 | [diff] [blame] | 69 | ` |
sebdet | d0d6563 | 2019-08-26 05:47:01 -0700 | [diff] [blame] | 70 | |
| 71 | const StyledRouterLink = styled(Link)` |
| 72 | color: ${props => props.theme.menuFontColor}; |
| 73 | background-color: ${props => props.theme.backgroundColor}; |
| 74 | ` |
| 75 | |
| 76 | const StyledLoginInfo = styled.a` |
| 77 | color: ${props => props.theme.menuFontColor}; |
| 78 | background-color: ${props => props.theme.backgroundColor}; |
| 79 | ` |
| 80 | |
sebdet | 4946e5b | 2019-07-10 12:32:36 +0200 | [diff] [blame] | 81 | const LoopViewDivStyled = styled.div` |
sebdet | 190227a | 2019-07-19 16:51:19 +0200 | [diff] [blame] | 82 | height: 100%; |
sebdet | c8d6130 | 2019-07-04 15:50:34 +0200 | [diff] [blame] | 83 | overflow: hidden; |
| 84 | margin-left: 10px; |
| 85 | margin-right: 10px; |
| 86 | margin-bottom: 10px; |
| 87 | color: ${props => props.theme.loopViewerFontColor}; |
| 88 | background-color: ${props => props.theme.loopViewerBackgroundColor}; |
| 89 | border: 1px solid transparent; |
| 90 | border-color: ${props => props.theme.loopViewerHeaderBackgroundColor}; |
| 91 | ` |
| 92 | |
sebdet | 4946e5b | 2019-07-10 12:32:36 +0200 | [diff] [blame] | 93 | const LoopViewHeaderDivStyled = styled.div` |
sebdet | c8d6130 | 2019-07-04 15:50:34 +0200 | [diff] [blame] | 94 | background-color: ${props => props.theme.loopViewerHeaderBackgroundColor}; |
| 95 | padding: 10px 10px; |
| 96 | color: ${props => props.theme.loopViewerHeaderFontColor}; |
| 97 | ` |
| 98 | |
sebdet | 4946e5b | 2019-07-10 12:32:36 +0200 | [diff] [blame] | 99 | const LoopViewBodyDivStyled = styled.div` |
sebdet | c8d6130 | 2019-07-04 15:50:34 +0200 | [diff] [blame] | 100 | background-color: ${props => (props.theme.loopViewerBackgroundColor)}; |
| 101 | padding: 10px 10px; |
| 102 | color: ${props => (props.theme.loopViewerHeaderFontColor)}; |
| 103 | height: 95%; |
| 104 | ` |
| 105 | |
sebdet | c8d6130 | 2019-07-04 15:50:34 +0200 | [diff] [blame] | 106 | export default class LoopUI extends React.Component { |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 107 | |
sebdet | 4946e5b | 2019-07-10 12:32:36 +0200 | [diff] [blame] | 108 | state = { |
| 109 | userName: null, |
Ted Humphrey | 01e5fde | 2020-01-27 18:57:39 -0500 | [diff] [blame] | 110 | loopName: OnapConstants.defaultLoopName, |
xuegao | 0efeb6b | 2019-10-07 14:36:34 +0200 | [diff] [blame] | 111 | loopCache: new LoopCache({}), |
xuegao | cc5fe51 | 2020-04-06 13:13:52 +0200 | [diff] [blame] | 112 | showSucAlert: false, |
| 113 | showFailAlert: false |
sebdet | 4946e5b | 2019-07-10 12:32:36 +0200 | [diff] [blame] | 114 | }; |
xuegao | 7c7323d | 2019-07-09 11:52:20 +0200 | [diff] [blame] | 115 | |
sebdet | 4946e5b | 2019-07-10 12:32:36 +0200 | [diff] [blame] | 116 | constructor() { |
| 117 | super(); |
| 118 | this.getUser = this.getUser.bind(this); |
sebdet | 687b8de | 2019-08-26 14:29:11 -0700 | [diff] [blame] | 119 | this.logout = this.logout.bind(this); |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 120 | this.updateLoopCache = this.updateLoopCache.bind(this); |
sebdet | 83ce076 | 2019-08-02 14:53:59 +0200 | [diff] [blame] | 121 | this.loadLoop = this.loadLoop.bind(this); |
xuegao | 691e2b7 | 2019-08-16 11:07:24 +0200 | [diff] [blame] | 122 | this.closeLoop = this.closeLoop.bind(this); |
xuegao | cc5fe51 | 2020-04-06 13:13:52 +0200 | [diff] [blame] | 123 | this.showSucAlert = this.showSucAlert.bind(this); |
| 124 | this.showFailAlert = this.showFailAlert.bind(this); |
xuegao | 0efeb6b | 2019-10-07 14:36:34 +0200 | [diff] [blame] | 125 | this.disableAlert = this.disableAlert.bind(this); |
sebdet | 4946e5b | 2019-07-10 12:32:36 +0200 | [diff] [blame] | 126 | } |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 127 | |
sebdet | 2dacb9b | 2019-07-17 13:48:44 +0200 | [diff] [blame] | 128 | componentWillMount() { |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 129 | this.getUser(); |
| 130 | } |
sebdet | 4946e5b | 2019-07-10 12:32:36 +0200 | [diff] [blame] | 131 | |
| 132 | getUser() { |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 133 | UserService.login().then(user => { |
| 134 | this.setState({ userName: user }) |
sebdet | 4946e5b | 2019-07-10 12:32:36 +0200 | [diff] [blame] | 135 | }); |
| 136 | } |
sebdet | 687b8de | 2019-08-26 14:29:11 -0700 | [diff] [blame] | 137 | |
| 138 | logout() { |
| 139 | UserService.logout().then(user => { |
| 140 | this.setState({ userName: user }); |
| 141 | window.location.reload(); |
| 142 | }); |
| 143 | |
| 144 | } |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 145 | |
sebdet | c8d6130 | 2019-07-04 15:50:34 +0200 | [diff] [blame] | 146 | renderMenuNavBar() { |
| 147 | return ( |
xuegao | 691e2b7 | 2019-08-16 11:07:24 +0200 | [diff] [blame] | 148 | <MenuBar loopName={this.state.loopName}/> |
sebdet | c8d6130 | 2019-07-04 15:50:34 +0200 | [diff] [blame] | 149 | ); |
| 150 | } |
sebdet | 4946e5b | 2019-07-10 12:32:36 +0200 | [diff] [blame] | 151 | |
sebdet | c8d6130 | 2019-07-04 15:50:34 +0200 | [diff] [blame] | 152 | renderUserLoggedNavBar() { |
| 153 | return ( |
| 154 | <Navbar.Text> |
sebdet | d0d6563 | 2019-08-26 05:47:01 -0700 | [diff] [blame] | 155 | <StyledLoginInfo>Signed in as: </StyledLoginInfo> |
| 156 | <StyledRouterLink to="/userInfo">{this.state.userName}</StyledRouterLink> |
| 157 | <StyledRouterLink to="/logout/"> (logout)</StyledRouterLink> |
sebdet | c8d6130 | 2019-07-04 15:50:34 +0200 | [diff] [blame] | 158 | </Navbar.Text> |
| 159 | ); |
| 160 | } |
sebdet | 4946e5b | 2019-07-10 12:32:36 +0200 | [diff] [blame] | 161 | |
sebdet | c8d6130 | 2019-07-04 15:50:34 +0200 | [diff] [blame] | 162 | renderLogoNavBar() { |
| 163 | return ( |
| 164 | <Navbar.Brand> |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 165 | <img height="50px" width="234px" src={logo} alt="" /> |
sebdet | 4946e5b | 2019-07-10 12:32:36 +0200 | [diff] [blame] | 166 | <ProjectNameStyled>CLAMP</ProjectNameStyled> |
sebdet | c8d6130 | 2019-07-04 15:50:34 +0200 | [diff] [blame] | 167 | </Navbar.Brand> |
| 168 | ); |
| 169 | } |
sebdet | 4946e5b | 2019-07-10 12:32:36 +0200 | [diff] [blame] | 170 | |
xuegao | 0efeb6b | 2019-10-07 14:36:34 +0200 | [diff] [blame] | 171 | renderAlertBar() { |
| 172 | return ( |
xuegao | cc5fe51 | 2020-04-06 13:13:52 +0200 | [diff] [blame] | 173 | <div> |
| 174 | <Alert variant="success" show={this.state.showSucAlert} onClose={this.disableAlert} dismissible> |
xuegao | 0efeb6b | 2019-10-07 14:36:34 +0200 | [diff] [blame] | 175 | {this.state.showMessage} |
| 176 | </Alert> |
xuegao | cc5fe51 | 2020-04-06 13:13:52 +0200 | [diff] [blame] | 177 | <Alert variant="danger" show={this.state.showFailAlert} onClose={this.disableAlert} dismissible> |
| 178 | {this.state.showMessage} |
| 179 | </Alert> |
| 180 | </div> |
xuegao | 0efeb6b | 2019-10-07 14:36:34 +0200 | [diff] [blame] | 181 | ); |
| 182 | } |
| 183 | |
sebdet | c8d6130 | 2019-07-04 15:50:34 +0200 | [diff] [blame] | 184 | renderNavBar() { |
| 185 | return ( |
sebdet | d0d6563 | 2019-08-26 05:47:01 -0700 | [diff] [blame] | 186 | <Navbar > |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 187 | {this.renderLogoNavBar()} |
sebdet | d0d6563 | 2019-08-26 05:47:01 -0700 | [diff] [blame] | 188 | <Navbar.Toggle aria-controls="responsive-navbar-nav" /> |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 189 | {this.renderMenuNavBar()} |
| 190 | {this.renderUserLoggedNavBar()} |
| 191 | </Navbar> |
| 192 | ); |
sebdet | c8d6130 | 2019-07-04 15:50:34 +0200 | [diff] [blame] | 193 | } |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 194 | |
sebdet | c8d6130 | 2019-07-04 15:50:34 +0200 | [diff] [blame] | 195 | renderLoopViewHeader() { |
| 196 | return ( |
sebdet | 4946e5b | 2019-07-10 12:32:36 +0200 | [diff] [blame] | 197 | <LoopViewHeaderDivStyled> |
sebdet | edaf4f9 | 2020-04-16 00:43:48 +0200 | [diff] [blame] | 198 | Loop Viewer - {this.state.loopName} - ({this.state.loopCache.getTemplateName()}) |
sebdet | 4946e5b | 2019-07-10 12:32:36 +0200 | [diff] [blame] | 199 | </LoopViewHeaderDivStyled> |
sebdet | c8d6130 | 2019-07-04 15:50:34 +0200 | [diff] [blame] | 200 | ); |
| 201 | } |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 202 | |
sebdet | c8d6130 | 2019-07-04 15:50:34 +0200 | [diff] [blame] | 203 | renderLoopViewBody() { |
| 204 | return ( |
sebdet | 4946e5b | 2019-07-10 12:32:36 +0200 | [diff] [blame] | 205 | <LoopViewBodyDivStyled> |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 206 | <LoopSvg loopCache={this.state.loopCache} /> |
sebdet | 190227a | 2019-07-19 16:51:19 +0200 | [diff] [blame] | 207 | <LoopStatus loopCache={this.state.loopCache}/> |
sebdet | c1ccc54 | 2019-07-19 09:50:33 +0200 | [diff] [blame] | 208 | <LoopLogs loopCache={this.state.loopCache} /> |
sebdet | 4946e5b | 2019-07-10 12:32:36 +0200 | [diff] [blame] | 209 | </LoopViewBodyDivStyled> |
sebdet | c8d6130 | 2019-07-04 15:50:34 +0200 | [diff] [blame] | 210 | ); |
| 211 | } |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 212 | |
xuegao | e52d572 | 2019-07-25 15:43:06 +0200 | [diff] [blame] | 213 | getLoopCache() { |
| 214 | return this.state.loopCache; |
| 215 | |
| 216 | } |
xuegao | 5fe750c | 2019-08-06 13:03:53 +0200 | [diff] [blame] | 217 | |
sebdet | c8d6130 | 2019-07-04 15:50:34 +0200 | [diff] [blame] | 218 | renderLoopViewer() { |
| 219 | return ( |
sebdet | 4946e5b | 2019-07-10 12:32:36 +0200 | [diff] [blame] | 220 | <LoopViewDivStyled> |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 221 | {this.renderLoopViewHeader()} |
| 222 | {this.renderLoopViewBody()} |
sebdet | 4946e5b | 2019-07-10 12:32:36 +0200 | [diff] [blame] | 223 | </LoopViewDivStyled> |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 224 | ); |
sebdet | c8d6130 | 2019-07-04 15:50:34 +0200 | [diff] [blame] | 225 | } |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 226 | |
| 227 | updateLoopCache(loopJson) { |
xuegao | 52432d6 | 2019-10-04 16:11:22 +0200 | [diff] [blame] | 228 | this.setState({ loopCache: new LoopCache(loopJson) }); |
| 229 | this.setState({ loopName: this.state.loopCache.getLoopName() }); |
sebdet | 83ce076 | 2019-08-02 14:53:59 +0200 | [diff] [blame] | 230 | console.info(this.state.loopName+" loop loaded successfully"); |
| 231 | } |
xuegao | 5fe750c | 2019-08-06 13:03:53 +0200 | [diff] [blame] | 232 | |
xuegao | cc5fe51 | 2020-04-06 13:13:52 +0200 | [diff] [blame] | 233 | showSucAlert(message) { |
| 234 | this.setState ({ showSucAlert: true, showMessage:message }); |
xuegao | 0efeb6b | 2019-10-07 14:36:34 +0200 | [diff] [blame] | 235 | } |
| 236 | |
xuegao | cc5fe51 | 2020-04-06 13:13:52 +0200 | [diff] [blame] | 237 | showFailAlert(message) { |
| 238 | this.setState ({ showFailAlert: true, showMessage:message }); |
| 239 | } |
| 240 | |
xuegao | 0efeb6b | 2019-10-07 14:36:34 +0200 | [diff] [blame] | 241 | disableAlert() { |
xuegao | cc5fe51 | 2020-04-06 13:13:52 +0200 | [diff] [blame] | 242 | this.setState ({ showSucAlert: false, showFailAlert: false }); |
xuegao | 0efeb6b | 2019-10-07 14:36:34 +0200 | [diff] [blame] | 243 | } |
| 244 | |
sebdet | 83ce076 | 2019-08-02 14:53:59 +0200 | [diff] [blame] | 245 | loadLoop(loopName) { |
| 246 | LoopService.getLoop(loopName).then(loop => { |
| 247 | console.debug("Updating loopCache"); |
xuegao | ac42c4b | 2019-10-09 16:12:37 +0200 | [diff] [blame] | 248 | LoopActionService.refreshStatus(loopName).then(data => { |
| 249 | this.updateLoopCache(data); |
| 250 | this.props.history.push('/'); |
| 251 | }) |
| 252 | .catch(error => { |
| 253 | this.updateLoopCache(loop); |
| 254 | this.props.history.push('/'); |
| 255 | }); |
sebdet | 83ce076 | 2019-08-02 14:53:59 +0200 | [diff] [blame] | 256 | }); |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 257 | } |
| 258 | |
xuegao | 691e2b7 | 2019-08-16 11:07:24 +0200 | [diff] [blame] | 259 | closeLoop() { |
Ted Humphrey | 01e5fde | 2020-01-27 18:57:39 -0500 | [diff] [blame] | 260 | this.setState({ loopCache: new LoopCache({}), loopName: OnapConstants.defaultLoopName }); |
xuegao | 691e2b7 | 2019-08-16 11:07:24 +0200 | [diff] [blame] | 261 | this.props.history.push('/'); |
| 262 | } |
sebdet | 687b8de | 2019-08-26 14:29:11 -0700 | [diff] [blame] | 263 | |
| 264 | render() { |
sebdet | c8d6130 | 2019-07-04 15:50:34 +0200 | [diff] [blame] | 265 | return ( |
sebdet | d0d6563 | 2019-08-26 05:47:01 -0700 | [diff] [blame] | 266 | <StyledMainDiv id="main_div"> |
ash74268 | 3a83e2a | 2020-01-31 15:40:15 +0000 | [diff] [blame] | 267 | <Route path="/uploadToscaPolicyModal" render={(routeProps) => (<UploadToscaPolicyModal {...routeProps} />)} /> |
drveerendra | 684057e | 2019-11-11 19:37:39 -0500 | [diff] [blame] | 268 | <Route path="/viewToscaPolicyModal" render={(routeProps) => (<ViewToscaPolicyModal {...routeProps} />)} /> |
sebdet | 3b7f669 | 2020-02-17 06:03:31 -0800 | [diff] [blame] | 269 | <Route path="/ViewLoopTemplatesModal" render={(routeProps) => (<ViewLoopTemplatesModal {...routeProps} />)} /> |
drveerendra | 5032095 | 2020-03-04 20:30:44 -0500 | [diff] [blame] | 270 | <Route path="/ManageDictionaries" render={(routeProps) => (<ManageDictionaries {...routeProps} />)} /> |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 271 | <Route path="/operationalPolicyModal" |
xuegao | cc5fe51 | 2020-04-06 13:13:52 +0200 | [diff] [blame] | 272 | render={(routeProps) => (<OperationalPolicyModal {...routeProps} loopCache={this.getLoopCache()} loadLoopFunction={this.loadLoop} updateLoopFunction={this.updateLoopCache} showSucAlert={this.showSucAlert} showFailAlert={this.showFailAlert}/>)} /> |
sebdet | c11160e | 2020-02-25 15:13:31 -0800 | [diff] [blame] | 273 | <Route path="/policyModal/:policyInstanceType/:policyName" render={(routeProps) => (<PolicyModal {...routeProps} loopCache={this.getLoopCache()} loadLoopFunction={this.loadLoop}/>)} /> |
| 274 | <Route path="/configurationPolicyModal/:policyName" render={(routeProps) => (<ConfigurationPolicyModal {...routeProps} loopCache={this.getLoopCache()} loadLoopFunction={this.loadLoop}/>)} /> |
sebdet | d2a4df0 | 2020-02-26 15:47:30 -0800 | [diff] [blame] | 275 | <Route path="/createLoop" render={(routeProps) => (<CreateLoopModal {...routeProps} loadLoopFunction={this.loadLoop} />)} /> |
sebdet | 83ce076 | 2019-08-02 14:53:59 +0200 | [diff] [blame] | 276 | <Route path="/openLoop" render={(routeProps) => (<OpenLoopModal {...routeProps} loadLoopFunction={this.loadLoop} />)} /> |
sebdet | b13a790 | 2019-11-15 17:26:45 +0100 | [diff] [blame] | 277 | <Route path="/loopProperties" render={(routeProps) => (<LoopPropertiesModal {...routeProps} loopCache={this.getLoopCache()} loadLoopFunction={this.loadLoop}/>)} /> |
sebdet | aa486be | 2020-02-18 02:00:11 -0800 | [diff] [blame] | 278 | <Route path="/modifyLoop" render={(routeProps) => (<ModifyLoopModal {...routeProps} loopCache={this.getLoopCache()} loadLoopFunction={this.loadLoop}/>)} /> |
| 279 | |
sebdet | 4dc849f | 2019-11-15 17:49:42 +0100 | [diff] [blame] | 280 | <Route path="/userInfo" render={(routeProps) => (<UserInfoModal {...routeProps} />)} /> |
xuegao | 691e2b7 | 2019-08-16 11:07:24 +0200 | [diff] [blame] | 281 | <Route path="/closeLoop" render={this.closeLoop} /> |
xuegao | cc5fe51 | 2020-04-06 13:13:52 +0200 | [diff] [blame] | 282 | <Route path="/submit" render={(routeProps) => (<PerformAction {...routeProps} loopAction="submit" loopCache={this.getLoopCache()} updateLoopFunction={this.updateLoopCache} showSucAlert={this.showSucAlert} showFailAlert={this.showFailAlert}/>)} /> |
| 283 | <Route path="/stop" render={(routeProps) => (<PerformAction {...routeProps} loopAction="stop" loopCache={this.getLoopCache()} updateLoopFunction={this.updateLoopCache} showSucAlert={this.showSucAlert} showFailAlert={this.showFailAlert}/>)} /> |
| 284 | <Route path="/restart" render={(routeProps) => (<PerformAction {...routeProps} loopAction="restart" loopCache={this.getLoopCache()} updateLoopFunction={this.updateLoopCache} showSucAlert={this.showSucAlert} showFailAlert={this.showFailAlert}/>)} /> |
| 285 | <Route path="/delete" render={(routeProps) => (<PerformAction {...routeProps} loopAction="delete" loopCache={this.getLoopCache()} updateLoopFunction={this.updateLoopCache} showSucAlert={this.showSucAlert} showFailAlert={this.showFailAlert}/>)} /> |
| 286 | <Route path="/undeploy" render={(routeProps) => (<PerformAction {...routeProps} loopAction="undeploy" loopCache={this.getLoopCache()} updateLoopFunction={this.updateLoopCache} showSucAlert={this.showSucAlert} showFailAlert={this.showFailAlert}/>)} /> |
| 287 | <Route path="/deploy" render={(routeProps) => (<DeployLoopModal {...routeProps} loopCache={this.getLoopCache()} updateLoopFunction={this.updateLoopCache} showSucAlert={this.showSucAlert} showFailAlert={this.showFailAlert}/>)} /> |
| 288 | <Route path="/refreshStatus" render={(routeProps) => (<RefreshStatus {...routeProps} loopCache={this.getLoopCache()} updateLoopFunction={this.updateLoopCache} showSucAlert={this.showSucAlert} showFailAlert={this.showFailAlert}/>)} /> |
sebdet | 687b8de | 2019-08-26 14:29:11 -0700 | [diff] [blame] | 289 | <Route path="/logout" render={this.logout} /> |
| 290 | <GlobalClampStyle /> |
xuegao | 0efeb6b | 2019-10-07 14:36:34 +0200 | [diff] [blame] | 291 | {this.renderAlertBar()} |
sebdet | 8a02dd7 | 2019-07-31 17:11:11 +0200 | [diff] [blame] | 292 | {this.renderNavBar()} |
| 293 | {this.renderLoopViewer()} |
sebdet | d0d6563 | 2019-08-26 05:47:01 -0700 | [diff] [blame] | 294 | </StyledMainDiv> |
sebdet | c8d6130 | 2019-07-04 15:50:34 +0200 | [diff] [blame] | 295 | ); |
| 296 | } |
| 297 | } |