blob: 75ac2c49d211858c5be1fcfaaf7c544deb735e55 [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';
26import Modal from 'react-bootstrap/Modal';
27import styled from 'styled-components';
28import LoopService from '../../../api/LoopService';
29import JSONEditor from '@json-editor/json-editor';
30
31const ModalStyled = styled(Modal)`
32 background-color: transparent;
33`
34
35export default class PolicyModal extends React.Component {
36
37 state = {
38 show: true,
39 loopCache: this.props.loopCache,
40 jsonEditor: null,
41 policyName: this.props.match.params.policyName,
42 // This is to indicate whether it's an operational or config policy (in terms of loop instance)
43 policyInstanceType: this.props.match.params.policyInstanceType
44 };
45
46 constructor(props, context) {
47 super(props, context);
48 this.handleClose = this.handleClose.bind(this);
49 this.handleSave = this.handleSave.bind(this);
50 this.renderJsonEditor = this.renderJsonEditor.bind(this);
51 }
52
53 handleSave() {
54 var errors = this.state.jsonEditor.validate();
55 var editorData = this.state.jsonEditor.getValue();
56
57 if (errors.length !== 0) {
58 console.error("Errors detected during policy data validation ", errors);
59 this.setState({ show: false });
60 this.props.history.push('/');
61 }
62 else {
63 console.info("NO validation errors found in policy data");
64 if (policyInstanceType === 'MICRO-SERVICE-POLICY') {
65 this.state.loopCache.updateMicroServiceProperties(this.state.policyName, editorData[0]);
66 LoopService.setMicroServiceProperties(this.state.loopCache.getLoopName(), this.state.loopCache.getMicroServiceForName(this.state.policyName)).then(resp => {
67 this.setState({ show: false });
68 this.props.history.push('/');
69 this.props.loadLoopFunction(this.state.loopCache.getLoopName());
70 });
71 } else if (policyInstanceType === 'OPERATIONAL-POLICY') {
72 this.state.loopCache.updateOperationalPolicyProperties(editorData);
73 LoopService.setOperationalPolicyProperties(this.state.loopCache.getLoopName(), this.state.loopCache.getOperationalPolicyForName(this.state.policyName)).then(resp => {
74 this.setState({ show: false });
75 this.props.history.push('/');
76 this.props.loadLoopFunction(this.state.loopCache.getLoopName());
77 });
78 }
79 }
80 }
81
82 handleClose() {
83 this.setState({ show: false });
84 this.props.history.push('/');
85 }
86
87 componentDidMount() {
88 this.renderJsonEditor();
89 }
90
91 renderJsonEditor() {
92 console.debug("Rendering PolicyModal ", this.state.policyName);
93 var toscaModel = {};
94 var editorData = {};
95 if (policyInstanceType === 'MICRO-SERVICE-POLICY') {
96 toscaModel = this.state.loopCache.getMicroServiceJsonRepresentationForName(this.state.policyName);
97 editorData = this.state.loopCache.getMicroServicePropertiesForName(this.state.policyName);
98 } else if (policyInstanceType === 'OPERATIONAL-POLICY') {
99 toscaModel = this.state.loopCache.getOperationalPolicyJsonRepresentationForName(this.state.policyName);
100 editorData = this.state.loopCache.getOperationalPolicyPropertiesForName(this.state.policyName);
101 }
102
103 if (toscaModel == null) {
104 return;
105 }
106
107 JSONEditor.defaults.options.theme = 'bootstrap4';
108 //JSONEditor.defaults.options.iconlib = 'bootstrap2';
109 JSONEditor.defaults.options.object_layout = 'grid';
110 JSONEditor.defaults.options.disable_properties = true;
111 JSONEditor.defaults.options.disable_edit_json = false;
112 JSONEditor.defaults.options.disable_array_reorder = true;
113 JSONEditor.defaults.options.disable_array_delete_last_row = true;
114 JSONEditor.defaults.options.disable_array_delete_all_rows = false;
115 JSONEditor.defaults.options.show_errors = 'always';
116
117 this.setState({
118 jsonEditor: new JSONEditor(document.getElementById("editor"),
119 { schema: toscaModel.schema, startval: editorData })
120 })
121 }
122
123 render() {
124 return (
125 <ModalStyled size="xl" show={this.state.show} onHide={this.handleClose}>
126 <Modal.Header closeButton>
127 <Modal.Title>Configuration policies</Modal.Title>
128 </Modal.Header>
129 <Modal.Body>
130 <div id="editor" />
131
132 </Modal.Body>
133 <Modal.Footer>
134 <Button variant="secondary" onClick={this.handleClose}>
135 Close
136 </Button>
137 <Button variant="primary" onClick={this.handleSave}>
138 Save Changes
139 </Button>
140 </Modal.Footer>
141 </ModalStyled>
142
143 );
144 }
145}