blob: 8b49d9150d8c9cc9507ac4544901b5ce65c30970 [file] [log] [blame]
sebdetc11160e2020-02-25 15:13:31 -08001/*-
2 * ============LICENSE_START=======================================================
3 * ONAP CLAMP
4 * ================================================================================
5 * Copyright (C) 2020 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
24import React from 'react'
25import Button from 'react-bootstrap/Button';
xuegao635445a2020-03-02 11:37:20 +010026import Form from 'react-bootstrap/Form';
27import Col from 'react-bootstrap/Col';
28import Row from 'react-bootstrap/Row';
29import Select from 'react-select';
sebdetc11160e2020-02-25 15:13:31 -080030import Modal from 'react-bootstrap/Modal';
31import styled from 'styled-components';
32import LoopService from '../../../api/LoopService';
xuegaoe18ed702020-03-17 10:46:39 +010033import LoopCache from '../../../api/LoopCache';
sebdetc11160e2020-02-25 15:13:31 -080034import JSONEditor from '@json-editor/json-editor';
xuegaoe18ed702020-03-17 10:46:39 +010035import Alert from 'react-bootstrap/Alert';
sebdetc11160e2020-02-25 15:13:31 -080036
37const ModalStyled = styled(Modal)`
38 background-color: transparent;
39`
40
41export default class PolicyModal extends React.Component {
42
43 state = {
44 show: true,
45 loopCache: this.props.loopCache,
46 jsonEditor: null,
47 policyName: this.props.match.params.policyName,
48 // This is to indicate whether it's an operational or config policy (in terms of loop instance)
xuegao635445a2020-03-02 11:37:20 +010049 policyInstanceType: this.props.match.params.policyInstanceType,
50 pdpGroup: null,
51 pdpGroupList: [],
52 pdpSubgroupList: [],
53 chosenPdpGroup: '',
xuegaoe18ed702020-03-17 10:46:39 +010054 chosenPdpSubgroup: '',
55 showSucAlert: false,
56 showFailAlert: false
sebdetc11160e2020-02-25 15:13:31 -080057 };
58
59 constructor(props, context) {
60 super(props, context);
61 this.handleClose = this.handleClose.bind(this);
62 this.handleSave = this.handleSave.bind(this);
63 this.renderJsonEditor = this.renderJsonEditor.bind(this);
xuegao635445a2020-03-02 11:37:20 +010064 this.handlePdpGroupChange = this.handlePdpGroupChange.bind(this);
65 this.handlePdpSubgroupChange = this.handlePdpSubgroupChange.bind(this);
sebdet2dd4e992020-03-04 15:47:39 -080066 this.createJsonEditor = this.createJsonEditor.bind(this);
xuegaoe18ed702020-03-17 10:46:39 +010067 this.handleRefresh = this.handleRefresh.bind(this);
68 this.disableAlert = this.disableAlert.bind(this);
sebdetc11160e2020-02-25 15:13:31 -080069 }
70
71 handleSave() {
72 var errors = this.state.jsonEditor.validate();
73 var editorData = this.state.jsonEditor.getValue();
74
75 if (errors.length !== 0) {
76 console.error("Errors detected during policy data validation ", errors);
sebdet2dd4e992020-03-04 15:47:39 -080077 return;
sebdetc11160e2020-02-25 15:13:31 -080078 }
79 else {
80 console.info("NO validation errors found in policy data");
sebdetd2a4df02020-02-26 15:47:30 -080081 if (this.state.policyInstanceType === 'MICRO-SERVICE-POLICY') {
sebdet2dd4e992020-03-04 15:47:39 -080082 this.state.loopCache.updateMicroServiceProperties(this.state.policyName, editorData);
xuegao635445a2020-03-02 11:37:20 +010083 this.state.loopCache.updateMicroServicePdpGroup(this.state.policyName, this.state.chosenPdpGroup, this.state.chosenPdpSubgroup);
sebdetc11160e2020-02-25 15:13:31 -080084 LoopService.setMicroServiceProperties(this.state.loopCache.getLoopName(), this.state.loopCache.getMicroServiceForName(this.state.policyName)).then(resp => {
85 this.setState({ show: false });
86 this.props.history.push('/');
87 this.props.loadLoopFunction(this.state.loopCache.getLoopName());
88 });
sebdetd2a4df02020-02-26 15:47:30 -080089 } else if (this.state.policyInstanceType === 'OPERATIONAL-POLICY') {
sebdet2dd4e992020-03-04 15:47:39 -080090 this.state.loopCache.updateOperationalPolicyProperties(this.state.policyName, editorData);
xuegao635445a2020-03-02 11:37:20 +010091 this.state.loopCache.updateOperationalPolicyPdpGroup(this.state.policyName, this.state.chosenPdpGroup, this.state.chosenPdpSubgroup);
92 LoopService.setOperationalPolicyProperties(this.state.loopCache.getLoopName(), this.state.loopCache.getOperationalPolicies()).then(resp => {
93 this.setState({ show: false });
94 this.props.history.push('/');
95 this.props.loadLoopFunction(this.state.loopCache.getLoopName());
96 });
sebdetc11160e2020-02-25 15:13:31 -080097 }
98 }
99 }
100
101 handleClose() {
102 this.setState({ show: false });
103 this.props.history.push('/');
104 }
105
106 componentDidMount() {
107 this.renderJsonEditor();
108 }
109
sebdet2dd4e992020-03-04 15:47:39 -0800110 createJsonEditor(toscaModel, editorData) {
sebdet82775722020-03-16 07:07:18 -0700111 JSONEditor.defaults.themes.myBootstrap4 = JSONEditor.defaults.themes.bootstrap4.extend({
112 getTab: function(text,tabId) {
113 var liel = document.createElement('li');
114 liel.classList.add('nav-item');
115 var ael = document.createElement("a");
116 ael.classList.add("nav-link");
117 ael.setAttribute("style",'padding:10px;max-width:160px;');
118 ael.setAttribute("href", "#" + tabId);
119 ael.setAttribute('data-toggle', 'tab');
120 text.setAttribute("style",'word-wrap:break-word;');
121 ael.appendChild(text);
122 liel.appendChild(ael);
123 return liel;
124 }
125 });
sebdet2dd4e992020-03-04 15:47:39 -0800126 return new JSONEditor(document.getElementById("editor"),
127 { schema: toscaModel,
128 startval: editorData,
sebdet82775722020-03-16 07:07:18 -0700129 theme: 'myBootstrap4',
sebdet2dd4e992020-03-04 15:47:39 -0800130 object_layout: 'grid',
sebdet1b4f20d2020-03-17 07:47:03 -0700131 disable_properties: false,
sebdet2dd4e992020-03-04 15:47:39 -0800132 disable_edit_json: false,
133 disable_array_reorder: true,
134 disable_array_delete_last_row: true,
135 disable_array_delete_all_rows: false,
sebdet49ab84a2020-03-13 15:27:41 -0700136 array_controls_top: true,
137 keep_oneof_values: false,
138 collapsed:true,
sebdet2dd4e992020-03-04 15:47:39 -0800139 show_errors: 'always',
140 display_required_only: false,
sebdet82775722020-03-16 07:07:18 -0700141 show_opt_in: false,
sebdet2dd4e992020-03-04 15:47:39 -0800142 prompt_before_delete: true,
sebdet82775722020-03-16 07:07:18 -0700143 required_by_default: false
sebdet2dd4e992020-03-04 15:47:39 -0800144 })
145 }
146
sebdetc11160e2020-02-25 15:13:31 -0800147 renderJsonEditor() {
148 console.debug("Rendering PolicyModal ", this.state.policyName);
149 var toscaModel = {};
xuegao635445a2020-03-02 11:37:20 +0100150 var editorData = {};
151 var pdpGroupValues = {};
152 var chosenPdpGroupValue, chosenPdpSubgroupValue;
153 if (this.state.policyInstanceType === 'MICRO-SERVICE-POLICY') {
154 toscaModel = this.state.loopCache.getMicroServiceJsonRepresentationForName(this.state.policyName);
155 editorData = this.state.loopCache.getMicroServicePropertiesForName(this.state.policyName);
sebdet2dd4e992020-03-04 15:47:39 -0800156 pdpGroupValues = this.state.loopCache.getMicroServiceSupportedPdpGroup(this.state.policyName);
xuegao635445a2020-03-02 11:37:20 +0100157 chosenPdpGroupValue = this.state.loopCache.getMicroServicePdpGroup(this.state.policyName);
158 chosenPdpSubgroupValue = this.state.loopCache.getMicroServicePdpSubgroup(this.state.policyName);
159 } else if (this.state.policyInstanceType === 'OPERATIONAL-POLICY') {
160 toscaModel = this.state.loopCache.getOperationalPolicyJsonRepresentationForName(this.state.policyName);
161 editorData = this.state.loopCache.getOperationalPolicyPropertiesForName(this.state.policyName);
sebdet2dd4e992020-03-04 15:47:39 -0800162 pdpGroupValues = this.state.loopCache.getOperationalPolicySupportedPdpGroup(this.state.policyName);
xuegao635445a2020-03-02 11:37:20 +0100163 chosenPdpGroupValue = this.state.loopCache.getOperationalPolicyPdpGroup(this.state.policyName);
164 chosenPdpSubgroupValue = this.state.loopCache.getOperationalPolicyPdpSubgroup(this.state.policyName);
165 }
sebdetc11160e2020-02-25 15:13:31 -0800166
167 if (toscaModel == null) {
168 return;
169 }
170
sebdet2dd4e992020-03-04 15:47:39 -0800171 var pdpSubgroupValues = [];
172 if (typeof(chosenPdpGroupValue) !== "undefined") {
xuegao635445a2020-03-02 11:37:20 +0100173 var selectedPdpGroup = pdpGroupValues.filter(entry => (Object.keys(entry)[0] === chosenPdpGroupValue));
sebdet2dd4e992020-03-04 15:47:39 -0800174 pdpSubgroupValues = selectedPdpGroup[0][chosenPdpGroupValue].map((pdpSubgroup) => { return { label: pdpSubgroup, value: pdpSubgroup } });
xuegao635445a2020-03-02 11:37:20 +0100175 }
sebdet2dd4e992020-03-04 15:47:39 -0800176 this.setState({
177 jsonEditor: this.createJsonEditor(toscaModel,editorData),
178 pdpGroup: pdpGroupValues,
179 pdpGroupList: pdpGroupValues.map(entry => {
180 return { label: Object.keys(entry)[0], value: Object.keys(entry)[0] };
181 }),
182 pdpSubgroupList: pdpSubgroupValues,
183 chosenPdpGroup: chosenPdpGroupValue,
184 chosenPdpSubgroup: chosenPdpSubgroupValue
185 })
xuegao635445a2020-03-02 11:37:20 +0100186 }
187
188 handlePdpGroupChange(e) {
189 var selectedPdpGroup = this.state.pdpGroup.filter(entry => (Object.keys(entry)[0] === e.value));
190 const pdpSubgroupValues = selectedPdpGroup[0][e.value].map((pdpSubgroup) => { return { label: pdpSubgroup, value: pdpSubgroup } });
191 if (this.state.chosenPdpGroup !== e.value) {
sebdet2dd4e992020-03-04 15:47:39 -0800192 this.setState({
xuegao635445a2020-03-02 11:37:20 +0100193 chosenPdpGroup: e.value,
194 chosenPdpSubgroup: '',
195 pdpSubgroupList: pdpSubgroupValues
196 });
197 }
198 }
199
200 handlePdpSubgroupChange(e) {
201 this.setState({ chosenPdpSubgroup: e.value });
sebdetc11160e2020-02-25 15:13:31 -0800202 }
203
xuegaoe18ed702020-03-17 10:46:39 +0100204 handleRefresh() {
205 var newLoopCache, toscaModel, editorData;
206 if (this.state.policyInstanceType === 'MICRO-SERVICE-POLICY') {
207 LoopService.refreshMicroServicePolicyJson(this.state.loopCache.getLoopName(),this.state.policyName).then(data => {
208 newLoopCache = new LoopCache(data);
209 toscaModel = newLoopCache.getMicroServiceJsonRepresentationForName(this.state.policyName);
210 editorData = newLoopCache.getMicroServicePropertiesForName(this.state.policyName);
211 document.getElementById("editor").innerHTML = "";
212 this.setState({
213 loopCache: newLoopCache,
214 jsonEditor: this.createJsonEditor(toscaModel,editorData),
215 showSucAlert: true,
216 showMessage: "Successfully refreshed"
217 });
218 })
219 .catch(error => {
220 console.error("Error while refreshing the Operational Policy Json Representation");
221 this.setState({
222 showFailAlert: true,
223 showMessage: "Refreshing of UI failed"
224 });
225 });
226 } else if (this.state.policyInstanceType === 'OPERATIONAL-POLICY') {
227 LoopService.refreshOperationalPolicyJson(this.state.loopCache.getLoopName(),this.state.policyName).then(data => {
228 var newLoopCache = new LoopCache(data);
229 toscaModel = newLoopCache.getOperationalPolicyJsonRepresentationForName(this.state.policyName);
230 editorData = newLoopCache.getOperationalPolicyPropertiesForName(this.state.policyName);
231 document.getElementById("editor").innerHTML = "";
232 this.setState({
233 loopCache: newLoopCache,
234 jsonEditor: this.createJsonEditor(toscaModel,editorData),
235 showSucAlert: true,
236 showMessage: "Successfully refreshed"
237 });
238 })
239 .catch(error => {
240 console.error("Error while refreshing the Operational Policy Json Representation");
241 this.setState({
242 showFailAlert: true,
243 showMessage: "Refreshing of UI failed"
244 });
245 });
246 }
247 }
248
249 disableAlert() {
250 this.setState ({ showSucAlert: false, showFailAlert: false });
251 }
252
sebdetc11160e2020-02-25 15:13:31 -0800253 render() {
254 return (
255 <ModalStyled size="xl" show={this.state.show} onHide={this.handleClose}>
256 <Modal.Header closeButton>
sebdet2dd4e992020-03-04 15:47:39 -0800257 <Modal.Title>Edit the policy</Modal.Title>
sebdetc11160e2020-02-25 15:13:31 -0800258 </Modal.Header>
xuegaoe18ed702020-03-17 10:46:39 +0100259 <Alert variant="success" show={this.state.showSucAlert} onClose={this.disableAlert} dismissible>
260 {this.state.showMessage}
261 </Alert>
262 <Alert variant="danger" show={this.state.showFailAlert} onClose={this.disableAlert} dismissible>
263 {this.state.showMessage}
264 </Alert>
sebdetc11160e2020-02-25 15:13:31 -0800265 <Modal.Body>
266 <div id="editor" />
xuegao635445a2020-03-02 11:37:20 +0100267 <Form.Group as={Row} controlId="formPlaintextEmail">
268 <Form.Label column sm="2">Pdp Group Info</Form.Label>
269 <Col sm="3">
270 <Select value={{ label: this.state.chosenPdpGroup, value: this.state.chosenPdpGroup }} onChange={this.handlePdpGroupChange} options={this.state.pdpGroupList} />
271 </Col>
272 <Col sm="3">
273 <Select value={{ label: this.state.chosenPdpSubgroup, value: this.state.chosenPdpSubgroup }} onChange={this.handlePdpSubgroupChange} options={this.state.pdpSubgroupList} />
274 </Col>
275 </Form.Group>
sebdetc11160e2020-02-25 15:13:31 -0800276 </Modal.Body>
277 <Modal.Footer>
278 <Button variant="secondary" onClick={this.handleClose}>
279 Close
xuegao635445a2020-03-02 11:37:20 +0100280 </Button>
sebdetc11160e2020-02-25 15:13:31 -0800281 <Button variant="primary" onClick={this.handleSave}>
282 Save Changes
xuegao635445a2020-03-02 11:37:20 +0100283 </Button>
xuegaoe18ed702020-03-17 10:46:39 +0100284 <Button variant="primary" onClick={this.handleRefresh}>
285 Refresh
286 </Button>
sebdetc11160e2020-02-25 15:13:31 -0800287 </Modal.Footer>
288 </ModalStyled>
289
290 );
291 }
292}