From 493c3839fb6807512218165fd8a3a6efe1933fb9 Mon Sep 17 00:00:00 2001 From: sebdet Date: Mon, 15 Jul 2019 17:26:18 +0200 Subject: [PATCH] SVG Rendering SVG rendering draft for Config and operational policies management + call to back-end Issue-ID: CLAMP-422 Change-Id: Ia3ca4223e283d0cd56d98fb1871fd3b2880940ec Signed-off-by: sebdet --- ui-react/package.json | 2 +- ui-react/src/LoopUI.js | 81 ++-- ui-react/src/api/LoopCache.js | 31 +- ui-react/src/api/LoopService.js | 91 +++-- ui-react/src/api/UserService.js | 17 +- ui-react/src/api/example.json | 2 +- .../ConfigurationPolicyModal.js} | 66 ++- .../{LoopModal.js => OpenLoop/OpenLoopModal.js} | 55 +-- .../OperationalPolicy/OperationalPolicyModal.js | 119 +++--- .../components/loop_viewer/logs/ClosedLoopLogs.js | 54 --- .../{ClosedLoopStatus.css => LoopStatus.css} | 0 .../status/{ClosedLoopStatus.js => LoopStatus.js} | 4 +- ui-react/src/components/loop_viewer/svg/LoopSvg.js | 100 +++++ .../src/components/loop_viewer/svg/example.svg | 445 +-------------------- ui-react/src/index.js | 7 +- ui-react/src/theme/globalStyle.js | 8 + 16 files changed, 372 insertions(+), 710 deletions(-) rename ui-react/src/components/{loop_viewer/svg/ClosedLoopSvg.js => dialogs/ConfigurationPolicy/ConfigurationPolicyModal.js} (51%) rename ui-react/src/components/dialogs/{LoopModal.js => OpenLoop/OpenLoopModal.js} (77%) delete mode 100644 ui-react/src/components/loop_viewer/logs/ClosedLoopLogs.js rename ui-react/src/components/loop_viewer/status/{ClosedLoopStatus.css => LoopStatus.css} (100%) rename ui-react/src/components/loop_viewer/status/{ClosedLoopStatus.js => LoopStatus.js} (95%) create mode 100644 ui-react/src/components/loop_viewer/svg/LoopSvg.js diff --git a/ui-react/package.json b/ui-react/package.json index 1b98d0f1..f1ae2bc9 100644 --- a/ui-react/package.json +++ b/ui-react/package.json @@ -13,7 +13,7 @@ "author": "ONAP Clamp Team", "license": "Apache-2.0", "dependencies": { - "json-editor": "0.7.28", + "@json-editor/json-editor": "1.3.5", "react": "16.8.0", "react-dom": "16.8.0", "react-scripts": "3.0.1", diff --git a/ui-react/src/LoopUI.js b/ui-react/src/LoopUI.js index 997f94b1..a1aff3d6 100644 --- a/ui-react/src/LoopUI.js +++ b/ui-react/src/LoopUI.js @@ -28,10 +28,16 @@ import Navbar from 'react-bootstrap/Navbar'; import logo from './logo.png'; import { GlobalClampStyle } from './theme/globalStyle.js'; -import ClosedLoopSvg from './components/loop_viewer/svg/ClosedLoopSvg'; -import ClosedLoopLogs from './components/loop_viewer/logs/ClosedLoopLogs'; -import ClosedLoopStatus from './components/loop_viewer/status/ClosedLoopStatus'; +import LoopSvg from './components/loop_viewer/svg/LoopSvg'; +import LoopLogs from './components/loop_viewer/logs/LoopLogs'; +import LoopStatus from './components/loop_viewer/status/LoopStatus'; import UserService from './api/UserService'; +import LoopCache from './api/LoopCache'; + +import { Route } from 'react-router-dom' +import OpenLoopModal from './components/dialogs/OpenLoop/OpenLoopModal'; +import OperationalPolicyModal from './components/dialogs/OperationalPolicy/OperationalPolicyModal'; +import ConfigurationPolicyModal from './components/dialogs/ConfigurationPolicy/ConfigurationPolicyModal'; const ProjectNameStyled = styled.a` vertical-align: middle; @@ -71,26 +77,29 @@ const LoopViewLoopNameSpanStyled = styled.span` ` export default class LoopUI extends React.Component { + state = { userName: null, loopName: "Empty (NO loop loaded yet)", + loopCache: new LoopCache({}), }; constructor() { super(); this.getUser = this.getUser.bind(this); + this.updateLoopCache = this.updateLoopCache.bind(this); + } + + componentDidMount() { + this.getUser(); } - - componentDidMount() { - this.getUser(); - } getUser() { - UserService.LOGIN().then(user => { - this.setState({userName:user}) + UserService.login().then(user => { + this.setState({ userName: user }) }); } - + renderMenuNavBar() { return ( @@ -108,7 +117,7 @@ export default class LoopUI extends React.Component { renderLogoNavBar() { return ( - + CLAMP ); @@ -116,48 +125,56 @@ export default class LoopUI extends React.Component { renderNavBar() { return ( - - {this.renderLogoNavBar()} - {this.renderMenuNavBar()} - {this.renderUserLoggedNavBar()} - - ); + + {this.renderLogoNavBar()} + {this.renderMenuNavBar()} + {this.renderUserLoggedNavBar()} + + ); } - + renderLoopViewHeader() { return ( - Loop Viewer - {this.state.loopName} + Loop Viewer - {this.state.loopName} ); } - + renderLoopViewBody() { return ( - - - + + + ); } - + renderLoopViewer() { return ( - {this.renderLoopViewHeader()} - {this.renderLoopViewBody()} + {this.renderLoopViewHeader()} + {this.renderLoopViewBody()} - ); + ); } - + + updateLoopCache(loopJson) { + this.setState({ loopCache: new LoopCache(loopJson) }); + } + render() { return (
- - {this.renderNavBar()} - {this.renderLoopViewer()} -
+ + {this.renderNavBar()} + {this.renderLoopViewer()} + ()} /> + ()} /> + ()} /> + ); } } diff --git a/ui-react/src/api/LoopCache.js b/ui-react/src/api/LoopCache.js index d44b5cfd..4c8f68c2 100644 --- a/ui-react/src/api/LoopCache.js +++ b/ui-react/src/api/LoopCache.js @@ -21,15 +21,14 @@ * */ -class LoopCache { +export default class LoopCache { loopJsonCache; constructor(loopJson) { this.loopJsonCache=loopJson; - //LoopCache.SET_LOOP_JSON_CACHE(require('./example.json'); } - updateMsProperties(type, newMsProperties) { + updateMicroServiceProperties(type, newMsProperties) { if (newMsProperties["name"] === type) { for (var policy in this.loopJsonCache["microServicePolicies"]) { if (this.loopJsonCache["microServicePolicies"][policy]["name"] === type) { @@ -43,7 +42,7 @@ class LoopCache { this.loopJsonCache["globalPropertiesJson"] = newGlobalProperties; } - updateOpPolicyProperties(newOpProperties) { + updateOperationalPolicyProperties(newOpProperties) { this.loopJsonCache["operationalPolicies"] = newOpProperties; } @@ -51,7 +50,7 @@ class LoopCache { return this.loopJsonCache["name"]; } - getOperationalPolicyProperty() { + getOperationalPolicyConfigurationJson() { return JSON.parse(JSON.stringify(this.loopJsonCache["operationalPolicies"]["0"]["configurationsJson"])); } @@ -59,15 +58,15 @@ class LoopCache { return JSON.parse(JSON.stringify(this.loopJsonCache["operationalPolicies"])); } - getGlobalProperty() { + getGlobalProperties() { return JSON.parse(JSON.stringify(this.loopJsonCache["globalPropertiesJson"])); } - getDeploymentProperties() { + getDcaeDeploymentProperties() { return JSON.parse(JSON.stringify(this.loopJsonCache["globalPropertiesJson"]["dcaeDeployParameters"])); } - getMsJson(type) { + getMicroServicesJsonForType(type) { var msProperties = this.loopJsonCache["microServicePolicies"]; for (var policy in msProperties) { if (msProperties[policy]["name"] === type) { @@ -77,7 +76,7 @@ class LoopCache { return null; } - getMsProperty(type) { + getMicroServiceProperties(type) { var msProperties = this.loopJsonCache["microServicePolicies"]; for (var policy in msProperties) { if (msProperties[policy]["name"] === type) { @@ -89,7 +88,7 @@ class LoopCache { return null; } - getMsUI(type) { + getMicroServiceJsonRepresentationForType(type) { var msProperties = this.loopJsonCache["microServicePolicies"]; for (var policy in msProperties) { if (msProperties[policy]["name"] === type) { @@ -114,16 +113,4 @@ class LoopCache { getComponentStates() { return this.loopJsonCache.components; } - - get getLoopJsonCache() { - return this.loopJsonCache; - } - - set setLoopJsonCache(newJson) { - this.loopJsonCache = newJson; - } } - -export const LOOP_CACHE = new LoopCache(require('./example.json')); - -export default LoopCache; diff --git a/ui-react/src/api/LoopService.js b/ui-react/src/api/LoopService.js index f59f4576..2813a7c0 100644 --- a/ui-react/src/api/LoopService.js +++ b/ui-react/src/api/LoopService.js @@ -22,55 +22,62 @@ export default class LoopService { static getLoopNames() { - const url = '/restservices/clds/v2/loop/getAllNames'; - const options = { - method: 'GET' - }; - return fetch(url,options) - .then(function (response) { - if (response.ok) { - console.log("GetLoopNames response received: ", response.status); - return response.json(); - } else { - let errorMsg = "GetLoopNames failed with status code: " + response.status; - console.error(errorMsg); - return Promise.reject(errorMsg); - } - }) - .then(function (data) { - return data; - }) - .catch(function(error) { - console.error("GetLoopNames error received",error); - return Promise.reject(error); - }); + return fetch('/restservices/clds/v2/loop/getAllNames', { method: 'GET', credentials: 'include', }) + .then(function (response) { + console.debug("GetLoopNames response received: ", response.status); + if (response.ok) { + return response.json(); + } else { + console.error("GetLoopNames query failed"); + return {}; + } + }) + .catch(function (error) { + console.error("GetLoopNames error received", error); + return {}; + }); } static getLoop(loopName) { - const url = '/restservices/clds/v2/loop/' + loopName; - const options = { + return fetch('/restservices/clds/v2/loop/' + loopName, { method: 'GET', headers: { "Content-Type": "application/json" - } - }; - return fetch(url,options) - .then(function (response) { - if (response.ok) { - console.log("GetLoop response received: ", response.status); - return response.json(); - } else { - let errorMsg = "GetLoop failed with status code: " + response.status; - console.error(errorMsg); - return Promise.reject(errorMsg); - } + }, + credentials: 'include', }) - .then(function (data) { - return data; + .then(function (response) { + console.debug("GetLoop response received: ", response.status); + if (response.ok) { + return response.json(); + } else { + console.error("GetLoop query failed"); + return {}; + } + }) + .catch(function (error) { + console.error("GetLoop error received", error); + return {}; + }); + } + + static getSvg(loopName) { + return fetch('/restservices/clds/v2/loop/svgRepresentation/' + loopName, { + method: 'GET', + credentials: 'include', }) - .catch(function(error) { - console.error("GetLoop error received",error); - return Promise.reject(error); - }); + .then(function (response) { + console.debug("svgRepresentation response received: ", response.status); + if (response.ok) { + return response.text(); + } else { + console.error("svgRepresentation query failed"); + return ""; + } + }) + .catch(function (error) { + console.error("svgRepresentation error received", error); + return ""; + }); } } diff --git a/ui-react/src/api/UserService.js b/ui-react/src/api/UserService.js index 81453955..8f53d7b8 100644 --- a/ui-react/src/api/UserService.js +++ b/ui-react/src/api/UserService.js @@ -22,28 +22,29 @@ */ export default class UserService { - - static LOGIN() { + static notLoggedUserName='Anonymous'; + static login() { return fetch('/restservices/clds/v1/user/getUser', { method: 'GET', credentials: 'include', }) .then(function (response) { + console.debug("getUser response received, status code:", response.status); if (response.ok) { - console.log("getUser response received: ", response.status); return response.text(); } else { - console.error("getUser failed with status code: ",response.status); - return "Anonymous"; + console.error("getUser response is nok"); + return UserService.notLoggedUserName; } }) .then(function (data) { - console.log ("User connected:",data) + console.info ("User connected:",data) return data; }) .catch(function(error) { - console.error("getUser error received",error); - return "Anonymous"; + console.warn("getUser error received, user set to: ",UserService.notLoggedUserName); + console.error("getUser error:",error); + return UserService.notLoggedUserName; }); } } diff --git a/ui-react/src/api/example.json b/ui-react/src/api/example.json index f3cc9e18..108cf78e 100644 --- a/ui-react/src/api/example.json +++ b/ui-react/src/api/example.json @@ -1,5 +1,5 @@ { - "name": "LOOP_h2NMX_v1_0_ResourceInstanceName1_tca", + "name": "LOOP_Jbv1z_v1_0_ResourceInstanceName1_tca", "dcaeBlueprintId": "typeId-3a942643-a8f7-4e54-b2c1-eea8daba2b17", "globalPropertiesJson": { "dcaeDeployParameters": { diff --git a/ui-react/src/components/loop_viewer/svg/ClosedLoopSvg.js b/ui-react/src/components/dialogs/ConfigurationPolicy/ConfigurationPolicyModal.js similarity index 51% rename from ui-react/src/components/loop_viewer/svg/ClosedLoopSvg.js rename to ui-react/src/components/dialogs/ConfigurationPolicy/ConfigurationPolicyModal.js index d9f5eaf8..1a8b6e2c 100644 --- a/ui-react/src/components/loop_viewer/svg/ClosedLoopSvg.js +++ b/ui-react/src/components/dialogs/ConfigurationPolicy/ConfigurationPolicyModal.js @@ -20,24 +20,58 @@ * =================================================================== * */ -import React from 'react'; + +import React from 'react' +import Button from 'react-bootstrap/Button'; +import Modal from 'react-bootstrap/Modal'; +import { LOOP_CACHE } from '../../../api/LoopCache' import styled from 'styled-components'; -import { ReactComponent as SvgExample } from './example.svg'; -const LoopViewSvgDivStyle = styled.div` - overflow: hidden; - background-color: ${props => (props.theme.loopViewerBackgroundColor)}; - border: 1px solid transparent; - border-color: ${props => (props.theme.loopViewerHeaderColor)}; +const ModalStyled = styled(Modal)` + background-color: transparent; ` -export default class ClosedLoopViewSvg extends React.Component { - render() { - return ( - - - - ); - } -} +export default class ConfigurationPolicyModal extends React.Component { + + constructor(props, context) { + super(props, context); + + this.handleClose = this.handleClose.bind(this); + + this.state = { + show: true, + }; + + } + + handleClose() { + this.setState({ show: false }); + this.props.history.push('/') + } + + + + render() { + return ( + + + Configuration policies + + + + + + + + + + + + ); + } +} \ No newline at end of file diff --git a/ui-react/src/components/dialogs/LoopModal.js b/ui-react/src/components/dialogs/OpenLoop/OpenLoopModal.js similarity index 77% rename from ui-react/src/components/dialogs/LoopModal.js rename to ui-react/src/components/dialogs/OpenLoop/OpenLoopModal.js index 6dc04d19..6986209d 100644 --- a/ui-react/src/components/dialogs/LoopModal.js +++ b/ui-react/src/components/dialogs/OpenLoop/OpenLoopModal.js @@ -29,8 +29,7 @@ import Row from 'react-bootstrap/Row'; import Col from 'react-bootstrap/Col'; import FormCheck from 'react-bootstrap/FormCheck' import styled from 'styled-components'; -import LoopService from '../../api/LoopService'; -import LoopCache from '../../api/LoopCache'; +import LoopService from '../../../api/LoopService'; const ModalStyled = styled(Modal)` background-color: transparent; @@ -39,46 +38,56 @@ const CheckBoxStyled = styled(FormCheck.Input)` margin-left:3rem; ` -export default class LoopModal extends React.Component { +export default class OpenLoopModal extends React.Component { constructor(props, context) { super(props, context); this.getLoopNames = this.getLoopNames.bind(this); - this.openModel = this.openModel.bind(this); + this.handleOpen = this.handleOpen.bind(this); + this.getModel = this.getModel.bind(this); this.handleClose = this.handleClose.bind(this); this.handleDropdownListChange = this.handleDropdownListChange.bind(this); this.state = { show: true, chosenLoopName: '', - loopNames:[] + loopNames: [] }; } + componentDidMount() { - this.getLoopNames(); - } + this.getLoopNames(); + } + handleClose() { this.setState({ show: false }); - this.props.history.push('/'); + this.props.history.push('/'); } + handleDropdownListChange(e) { - this.setState({ chosenLoopName: e.value}); + this.setState({ chosenLoopName: e.value }); } + getLoopNames() { LoopService.getLoopNames().then(loopNames => { - const loopOptions = loopNames.map((loopName) => { return {label: loopName, value: loopName}}); - this.setState({loopNames:loopOptions}) + const loopOptions = loopNames.map((loopName) => { return { label: loopName, value: loopName } }); + this.setState({ loopNames: loopOptions }) }); } - openModel() { - this.setState({ show: false }); - this.props.history.push('/'); - // Open selected model - console.log("Loop " + this.state.chosenLoopName + " is chosen"); + + getModel() { LoopService.getLoop(this.state.chosenLoopName).then(loop => { - console.log("Initialize the loop cache"); - new LoopCache(loop); + console.debug("Settingloop cache with json"); + this.props.updateLoopCacheFunction(loop); }); } + + handleOpen() { + console.info("Loop " + this.state.chosenLoopName + " is chosen"); + this.setState({ show: false }); + this.props.history.push('/'); + this.getModel(); + } + render() { return ( @@ -89,19 +98,19 @@ export default class LoopModal extends React.Component { Model Name - - + Read Only - + - - + + diff --git a/ui-react/src/components/dialogs/OperationalPolicy/OperationalPolicyModal.js b/ui-react/src/components/dialogs/OperationalPolicy/OperationalPolicyModal.js index fd53300d..6822f3ff 100644 --- a/ui-react/src/components/dialogs/OperationalPolicy/OperationalPolicyModal.js +++ b/ui-react/src/components/dialogs/OperationalPolicy/OperationalPolicyModal.js @@ -24,7 +24,6 @@ import React from 'react' import Button from 'react-bootstrap/Button'; import Modal from 'react-bootstrap/Modal'; -import { LOOP_CACHE } from '../../../api/LoopCache' import './OperationalPolicy.css' import styled from 'styled-components'; @@ -34,30 +33,30 @@ const ModalStyled = styled(Modal)` export default class OperationalPolicyModal extends React.Component { + state = { + show: true, + loopCache: this.props.loopCache, + }; + + allPolicies = []; + policyIds = []; + constructor(props, context) { super(props, context); this.handleClose = this.handleClose.bind(this); this.initPolicySelect = this.initPolicySelect.bind(this); - - this.allPolicies = []; - this.policyIds = []; - this.initPolicySelect(); - - this.state = { - show: true, - }; - } handleClose() { this.setState({ show: false }); + this.props.history.push('/') } initPolicySelect() { if (this.allPolicies['operational_policy'] === undefined || this.allPolicies['operational_policy'] === null) { - this.allPolicies = LOOP_CACHE.getOperationalPolicyProperty(); + this.allPolicies = this.state.loopCache.getOperationalPolicyConfigurationJson(); } // Provision all policies ID first if (this.policyIds.length === 0 && this.allPolicies['operational_policy'] !== undefined) { @@ -94,7 +93,7 @@ export default class OperationalPolicyModal extends React.Component { } // When we change the name of a policy - isDuplicatedId (event) { + isDuplicatedId(event) { // update policy id structure var formNum = document.getElementById(event.target).closest('.formId').attr('id').substring(6); var policyId = document.getElementById(event.target).val(); @@ -111,51 +110,51 @@ export default class OperationalPolicyModal extends React.Component { } configureComponents() { - console.log("Load properties to op policy"); - // Set the header - document.getElementsByClassName('form-control').forEach(function() { - this.val(this.allPolicies['operational_policy']['controlLoop'][this.id]); - }); - // Set the sub-policies - this.allPolicies['operational_policy']['policies'].forEach(function(opPolicyElemIndex, opPolicyElemValue) { - -/* var formNum = add_one_more(); - forEach(document.getElementsByClassName('policyProperties').find('.form-control'), function(opPolicyPropIndex, opPolicyPropValue) { - - $("#formId" + formNum + " .policyProperties").find("#" + opPolicyPropValue.id).val( - allPolicies['operational_policy']['policies'][opPolicyElemIndex][opPolicyPropValue.id]); - }); - - // Initial TargetResourceId options - initTargetResourceIdOptions(allPolicies['operational_policy']['policies'][opPolicyElemIndex]['target']['type'], formNum); - $.each($('.policyTarget').find('.form-control'), function(opPolicyTargetPropIndex, opPolicyTargetPropValue) { - - $("#formId" + formNum + " .policyTarget").find("#" + opPolicyTargetPropValue.id).val( - allPolicies['operational_policy']['policies'][opPolicyElemIndex]['target'][opPolicyTargetPropValue.id]); - }); - - // update the current tab label - $("#go_properties_tab" + formNum).text( - allPolicies['operational_policy']['policies'][opPolicyElemIndex]['id']); - // Check if there is a guard set for it - $.each(allPolicies['guard_policies'], function(guardElemId, guardElemValue) { - - if (guardElemValue.recipe === $($("#formId" + formNum + " #recipe")[0]).val()) { - // Found one, set all guard prop - $.each($('.guardProperties').find('.form-control'), function(guardPropElemIndex, - guardPropElemValue) { - - guardElemValue['id'] = guardElemId; - $("#formId" + formNum + " .guardProperties").find("#" + guardPropElemValue.id).val( - guardElemValue[guardPropElemValue.id]); - }); - iniGuardPolicyType(guardElemId, formNum); - // And finally enable the flag - $("#formId" + formNum + " #enableGuardPolicy").prop("checked", true); - } - });*/ - }); - } + console.log("Load properties to op policy"); + // Set the header + document.getElementsByClassName('form-control').forEach(function () { + this.val(this.allPolicies['operational_policy']['controlLoop'][this.id]); + }); + // Set the sub-policies + this.allPolicies['operational_policy']['policies'].forEach(function (opPolicyElemIndex, opPolicyElemValue) { + + /* var formNum = add_one_more(); + forEach(document.getElementsByClassName('policyProperties').find('.form-control'), function(opPolicyPropIndex, opPolicyPropValue) { + + $("#formId" + formNum + " .policyProperties").find("#" + opPolicyPropValue.id).val( + allPolicies['operational_policy']['policies'][opPolicyElemIndex][opPolicyPropValue.id]); + }); + + // Initial TargetResourceId options + initTargetResourceIdOptions(allPolicies['operational_policy']['policies'][opPolicyElemIndex]['target']['type'], formNum); + $.each($('.policyTarget').find('.form-control'), function(opPolicyTargetPropIndex, opPolicyTargetPropValue) { + + $("#formId" + formNum + " .policyTarget").find("#" + opPolicyTargetPropValue.id).val( + allPolicies['operational_policy']['policies'][opPolicyElemIndex]['target'][opPolicyTargetPropValue.id]); + }); + + // update the current tab label + $("#go_properties_tab" + formNum).text( + allPolicies['operational_policy']['policies'][opPolicyElemIndex]['id']); + // Check if there is a guard set for it + $.each(allPolicies['guard_policies'], function(guardElemId, guardElemValue) { + + if (guardElemValue.recipe === $($("#formId" + formNum + " #recipe")[0]).val()) { + // Found one, set all guard prop + $.each($('.guardProperties').find('.form-control'), function(guardPropElemIndex, + guardPropElemValue) { + + guardElemValue['id'] = guardElemId; + $("#formId" + formNum + " .guardProperties").find("#" + guardPropElemValue.id).val( + guardElemValue[guardPropElemValue.id]); + }); + iniGuardPolicyType(guardElemId, formNum); + // And finally enable the flag + $("#formId" + formNum + " #enableGuardPolicy").prop("checked", true); + } + });*/ + }); + } render() { return ( @@ -195,7 +194,7 @@ export default class OperationalPolicyModal extends React.Component {
+ readOnly="readonly" id="clname" value={this.state.loopCache.getLoopName()} />
@@ -225,7 +224,7 @@ export default class OperationalPolicyModal extends React.Component {
+ onKeyUp="updateTabLabel($event)" /> ID must be unique
@@ -550,4 +549,4 @@ export default class OperationalPolicyModal extends React.Component { ); } -} +} \ No newline at end of file diff --git a/ui-react/src/components/loop_viewer/logs/ClosedLoopLogs.js b/ui-react/src/components/loop_viewer/logs/ClosedLoopLogs.js deleted file mode 100644 index ef7a3aef..00000000 --- a/ui-react/src/components/loop_viewer/logs/ClosedLoopLogs.js +++ /dev/null @@ -1,54 +0,0 @@ -/*- - * ============LICENSE_START======================================================= - * ONAP CLAMP - * ================================================================================ - * Copyright (C) 2019 AT&T Intellectual Property. All rights - * reserved. - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ============LICENSE_END============================================ - * =================================================================== - * - */ -import React from 'react'; -import Table from 'react-bootstrap/Table'; - -export default class ClosedLoopViewLogs extends React.Component { - render() { - return ( -
-
- - - - - - - - - - - - - - - - - - -
DateTypeComponentLog
testtesttesttest
-
-
- ); - } -} diff --git a/ui-react/src/components/loop_viewer/status/ClosedLoopStatus.css b/ui-react/src/components/loop_viewer/status/LoopStatus.css similarity index 100% rename from ui-react/src/components/loop_viewer/status/ClosedLoopStatus.css rename to ui-react/src/components/loop_viewer/status/LoopStatus.css diff --git a/ui-react/src/components/loop_viewer/status/ClosedLoopStatus.js b/ui-react/src/components/loop_viewer/status/LoopStatus.js similarity index 95% rename from ui-react/src/components/loop_viewer/status/ClosedLoopStatus.js rename to ui-react/src/components/loop_viewer/status/LoopStatus.js index da5969e4..f904d674 100644 --- a/ui-react/src/components/loop_viewer/status/ClosedLoopStatus.js +++ b/ui-react/src/components/loop_viewer/status/LoopStatus.js @@ -22,9 +22,9 @@ */ import React from 'react'; import Table from 'react-bootstrap/Table'; -import './ClosedLoopStatus.css'; +import './LoopStatus.css'; -export default class ClosedLoopStatus extends React.Component { +export default class LoopStatus extends React.Component { render() { return (
diff --git a/ui-react/src/components/loop_viewer/svg/LoopSvg.js b/ui-react/src/components/loop_viewer/svg/LoopSvg.js new file mode 100644 index 00000000..2858ccd8 --- /dev/null +++ b/ui-react/src/components/loop_viewer/svg/LoopSvg.js @@ -0,0 +1,100 @@ +/*- + * ============LICENSE_START======================================================= + * ONAP CLAMP + * ================================================================================ + * Copyright (C) 2019 AT&T Intellectual Property. All rights + * reserved. + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ============LICENSE_END============================================ + * =================================================================== + * + */ +import React from 'react'; +import styled from 'styled-components'; +import { withRouter } from "react-router"; +import LoopCache from '../../../api/LoopCache' +import LoopService from '../../../api/LoopService' + +const LoopViewSvgDivStyled = styled.div` + overflow: hidden; + background-color: ${props => (props.theme.loopViewerBackgroundColor)}; + border: 1px solid; + border-color: ${props => (props.theme.loopViewerHeaderColor)}; + height: 50%; +` + +class LoopViewSvg extends React.Component { + + static emptySvg = "No LOOP (SVG)"; + static operationalPolicyDataElementId = "OperationalPolicy"; + + + state = { + svgContent: LoopViewSvg.emptySvg, + loopCache: this.props.loopCache, + } + + constructor(props) { + super(props); + this.state.loopCache = props.loopCache; + this.handleSvgClick = this.handleSvgClick.bind(this); + this.getSvg = this.getSvg.bind(this); + } + + shouldComponentUpdate(nextProps, nextState) { + return this.state.svgContent !== nextState.svgContent; + } + + componentWillReceiveProps(newProps) { + this.state.loopCache = newProps.loopCache; + this.getSvg(); + } + + componentDidMount() { + this.getSvg(); + } + + getSvg() { + LoopService.getSvg(this.state.loopCache.getLoopName()).then(svgXml => { + if (svgXml.length != 0) { + this.setState({ svgContent: svgXml }) + } else { + this.setState({ svgContent: LoopViewSvg.emptySvg }) + } + }); + } + + handleSvgClick(event) { + console.debug("svg click event received"); + var elementName = event.target.parentNode.parentNode.parentNode.getAttribute('data-element-id'); + console.info("SVG element clicked", elementName); + if (typeof elementName === "undefined" || elementName === "VES") { + return; + } else if (elementName === LoopViewSvg.operationalPolicyDataElementId) { + this.props.history.push('/operationalPolicyModal'); + } else { + this.props.history.push('/configurationPolicyModal'); + } + } + + render() { + return ( + + + + ); + } +} + +export default withRouter(LoopViewSvg); \ No newline at end of file diff --git a/ui-react/src/components/loop_viewer/svg/example.svg b/ui-react/src/components/loop_viewer/svg/example.svg index 2f5ebd03..a7c40ee2 100644 --- a/ui-react/src/components/loop_viewer/svg/example.svg +++ b/ui-react/src/components/loop_viewer/svg/example.svg @@ -1,444 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - VES - - - - - - - - - - - - - - - - - - - - - - - - - tca_k8s - - - - - - - - - - - - - - - - - - - - - - - - - OperationalPolicy - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file +VESTCAOperationalPolicy \ No newline at end of file diff --git a/ui-react/src/index.js b/ui-react/src/index.js index eed3935e..8a62b5a2 100644 --- a/ui-react/src/index.js +++ b/ui-react/src/index.js @@ -24,14 +24,11 @@ import React from 'react'; import ReactDOM from 'react-dom'; import OnapClamp from './OnapClamp'; import { Route, BrowserRouter } from 'react-router-dom' -import LoopModal from './components/dialogs/LoopModal'; -import OperationalPolicyModal from './components/dialogs/OperationalPolicy/OperationalPolicyModal'; + const routing = ( - - } /> - + ); diff --git a/ui-react/src/theme/globalStyle.js b/ui-react/src/theme/globalStyle.js index df912629..1630c507 100644 --- a/ui-react/src/theme/globalStyle.js +++ b/ui-react/src/theme/globalStyle.js @@ -58,6 +58,14 @@ export const GlobalClampStyle = createGlobalStyle` color: ${props => props.theme.fontNormal}; background-color: ${props => (props.theme.backgroundColor)}; } + + svg { + padding: 10px; + overflow: hidden; + background-color: ${props => (props.theme.loopViewerBackgroundColor)}; + width: 100%; + height: 100%; + } ` export const DefaultClampTheme = { -- 2.16.6