blob: dc7c0a489734cbe00f8661f8844c4154fa0c86be [file] [log] [blame]
sebdet4946e5b2019-07-10 12:32:36 +02001/*-
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
24import React from 'react'
25import Button from 'react-bootstrap/Button';
26import Modal from 'react-bootstrap/Modal';
sebdet4946e5b2019-07-10 12:32:36 +020027import styled from 'styled-components';
xuegao2f5b2cd2020-01-06 16:13:46 +010028import LoopCache from '../../../api/LoopCache';
sebdetf9e2cee2019-08-09 18:36:09 +020029import LoopService from '../../../api/LoopService';
30import JSONEditor from '@json-editor/json-editor';
sebdet4946e5b2019-07-10 12:32:36 +020031
32const ModalStyled = styled(Modal)`
33 background-color: transparent;
34`
35
36export default class OperationalPolicyModal extends React.Component {
37
sebdet493c3832019-07-15 17:26:18 +020038 state = {
39 show: true,
40 loopCache: this.props.loopCache,
sebdet337f3662019-09-06 18:11:51 +020041 jsonEditor: null
sebdet493c3832019-07-15 17:26:18 +020042 };
43
sebdet4946e5b2019-07-10 12:32:36 +020044 constructor(props, context) {
45 super(props, context);
sebdet4946e5b2019-07-10 12:32:36 +020046 this.handleClose = this.handleClose.bind(this);
sebdetf9e2cee2019-08-09 18:36:09 +020047 this.handleSave = this.handleSave.bind(this);
48 this.renderJsonEditor = this.renderJsonEditor.bind(this);
xuegao2f5b2cd2020-01-06 16:13:46 +010049 this.handleRefresh = this.handleRefresh.bind(this);
sebdetf9e2cee2019-08-09 18:36:09 +020050 this.setDefaultJsonEditorOptions();
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 config policy data validation ", errors);
xuegao0efeb6b2019-10-07 14:36:34 +020059 this.props.showAlert(errors);
sebdetf9e2cee2019-08-09 18:36:09 +020060 }
61 else {
62 console.info("NO validation errors found in config policy data");
63 this.state.loopCache.updateOperationalPolicyProperties(editorData);
64 LoopService.setOperationalPolicyProperties(this.state.loopCache.getLoopName(), this.state.loopCache.getOperationalPolicies()).then(resp => {
65 this.setState({ show: false });
66 this.props.history.push('/');
67 this.props.loadLoopFunction(this.state.loopCache.getLoopName());
68 });
69 }
sebdet4946e5b2019-07-10 12:32:36 +020070 }
71
72 handleClose() {
73 this.setState({ show: false });
sebdetf9e2cee2019-08-09 18:36:09 +020074 this.props.history.push('/');
sebdet4946e5b2019-07-10 12:32:36 +020075 }
76
sebdetf9e2cee2019-08-09 18:36:09 +020077 componentDidMount() {
78 this.renderJsonEditor();
79 }
80
81 setDefaultJsonEditorOptions() {
xuegao83fe2b02019-09-25 11:23:18 +020082 JSONEditor.defaults.themes.myBootstrap4 = JSONEditor.defaults.themes.bootstrap4.extend({
83 getTab: function(text,tabId) {
84 var liel = document.createElement('li');
85 liel.classList.add('nav-item');
86 var ael = document.createElement("a");
87 ael.classList.add("nav-link");
88 ael.setAttribute("style",'padding:10px;max-width:160px;');
89 ael.setAttribute("href", "#" + tabId);
90 ael.setAttribute('data-toggle', 'tab');
91 text.setAttribute("style",'word-wrap:break-word;');
92 ael.appendChild(text);
93 liel.appendChild(ael);
94 return liel;
95 }
96 });
97 JSONEditor.defaults.options.theme = 'myBootstrap4';
sebdetf9e2cee2019-08-09 18:36:09 +020098 JSONEditor.defaults.options.object_layout = 'grid';
99 JSONEditor.defaults.options.disable_properties = true;
100 JSONEditor.defaults.options.disable_edit_json = false;
101 JSONEditor.defaults.options.disable_array_reorder = true;
102 JSONEditor.defaults.options.disable_array_delete_last_row = true;
103 JSONEditor.defaults.options.disable_array_delete_all_rows = false;
104 JSONEditor.defaults.options.array_controls_top=true;
105 JSONEditor.defaults.options.show_errors = 'always';
106 JSONEditor.defaults.options.keep_oneof_values=false;
sebdetf9e2cee2019-08-09 18:36:09 +0200107 JSONEditor.defaults.options.collapsed=true;
108 //JSONEditor.defaults.options.template = 'default';
109 }
110
111 renderJsonEditor() {
112 console.debug("Rendering OperationalPolicyModal");
113 var schema_json = this.state.loopCache.getOperationalPolicyJsonSchema();
114
115 if (schema_json == null) {
116 console.error("NO Operational policy schema found");
117 return;
sebdet4946e5b2019-07-10 12:32:36 +0200118 }
xuegaoc488fed2019-12-19 11:58:45 +0100119 var operationalPoliciesData = this.state.loopCache.getOperationalPoliciesNoJsonSchema();
sebdet4946e5b2019-07-10 12:32:36 +0200120
sebdetf9e2cee2019-08-09 18:36:09 +0200121 this.setState({
122 jsonEditor: new JSONEditor(document.getElementById("editor"),
123 { schema: schema_json.schema, startval: operationalPoliciesData })
124 })
sebdet493c3832019-07-15 17:26:18 +0200125 }
sebdet4946e5b2019-07-10 12:32:36 +0200126
xuegao2f5b2cd2020-01-06 16:13:46 +0100127 handleRefresh() {
128 LoopService.refreshOpPolicyJson(this.state.loopCache.getLoopName()).then(data => {
129 var newLoopCache = new LoopCache(data);
130 var schema_json = newLoopCache.getOperationalPolicyJsonSchema();
131 var operationalPoliciesData = newLoopCache.getOperationalPoliciesNoJsonSchema();
132 document.getElementById("editor").innerHTML = "";
133 this.setState({
134 loopCache: newLoopCache,
135 jsonEditor: new JSONEditor(document.getElementById("editor"),
136 { schema: schema_json.schema, startval: operationalPoliciesData })
137 })
138 this.props.updateLoopFunction(data);
139
140 })
141 .catch(error => {
142 console.error("Error while refreshing the Operational Policy Json Representation");
143 });
144 }
145
sebdet4946e5b2019-07-10 12:32:36 +0200146 render() {
147 return (
sebdetf9e2cee2019-08-09 18:36:09 +0200148 <ModalStyled size="xl" show={this.state.show} onHide={this.handleClose}>
sebdet4946e5b2019-07-10 12:32:36 +0200149 <Modal.Header closeButton>
150 <Modal.Title>Operational policies</Modal.Title>
151 </Modal.Header>
152 <Modal.Body>
sebdetf9e2cee2019-08-09 18:36:09 +0200153 <div id="editor" />
xuegaof248df62019-07-15 15:16:18 +0200154
sebdet4946e5b2019-07-10 12:32:36 +0200155 </Modal.Body>
156 <Modal.Footer>
157 <Button variant="secondary" onClick={this.handleClose}>
158 Close
xuegao2f5b2cd2020-01-06 16:13:46 +0100159 </Button>
160 <Button variant="secondary" onClick={this.handleRefresh}>
161 Refresh
162 </Button>
sebdetf9e2cee2019-08-09 18:36:09 +0200163 <Button variant="primary" onClick={this.handleSave}>
sebdet4946e5b2019-07-10 12:32:36 +0200164 Save Changes
xuegao2f5b2cd2020-01-06 16:13:46 +0100165 </Button>
sebdet4946e5b2019-07-10 12:32:36 +0200166 </Modal.Footer>
167 </ModalStyled>
168
169 );
170 }
sebdet493c3832019-07-15 17:26:18 +0200171}