blob: 6db38fd23897b861a6f5f7ce0e456249e50c3894 [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';
sebdetf9e2cee2019-08-09 18:36:09 +020028import LoopService from '../../../api/LoopService';
29import JSONEditor from '@json-editor/json-editor';
sebdet4946e5b2019-07-10 12:32:36 +020030
31const ModalStyled = styled(Modal)`
32 background-color: transparent;
33`
34
35export default class OperationalPolicyModal extends React.Component {
36
sebdet493c3832019-07-15 17:26:18 +020037 state = {
38 show: true,
39 loopCache: this.props.loopCache,
sebdetf9e2cee2019-08-09 18:36:09 +020040 jsonEditor: null,
sebdet493c3832019-07-15 17:26:18 +020041 };
42
sebdet4946e5b2019-07-10 12:32:36 +020043 constructor(props, context) {
44 super(props, context);
sebdet4946e5b2019-07-10 12:32:36 +020045 this.handleClose = this.handleClose.bind(this);
sebdetf9e2cee2019-08-09 18:36:09 +020046 this.handleSave = this.handleSave.bind(this);
47 this.renderJsonEditor = this.renderJsonEditor.bind(this);
48 this.setDefaultJsonEditorOptions();
49 }
50
51 handleSave() {
52 var errors = this.state.jsonEditor.validate();
53 var editorData = this.state.jsonEditor.getValue();
54
55 if (errors.length !== 0) {
56 console.error("Errors detected during config policy data validation ", errors);
57 alert(errors);
58 }
59 else {
60 console.info("NO validation errors found in config policy data");
61 this.state.loopCache.updateOperationalPolicyProperties(editorData);
62 LoopService.setOperationalPolicyProperties(this.state.loopCache.getLoopName(), this.state.loopCache.getOperationalPolicies()).then(resp => {
63 this.setState({ show: false });
64 this.props.history.push('/');
65 this.props.loadLoopFunction(this.state.loopCache.getLoopName());
66 });
67 }
sebdet4946e5b2019-07-10 12:32:36 +020068 }
69
70 handleClose() {
71 this.setState({ show: false });
sebdetf9e2cee2019-08-09 18:36:09 +020072 this.props.history.push('/');
sebdet4946e5b2019-07-10 12:32:36 +020073 }
74
sebdetf9e2cee2019-08-09 18:36:09 +020075 componentDidMount() {
76 this.renderJsonEditor();
77 }
78
79 setDefaultJsonEditorOptions() {
80 JSONEditor.defaults.options.theme = 'bootstrap4';
81 // JSONEditor.defaults.options.iconlib = 'bootstrap2';
82
83 JSONEditor.defaults.options.object_layout = 'grid';
84 JSONEditor.defaults.options.disable_properties = true;
85 JSONEditor.defaults.options.disable_edit_json = false;
86 JSONEditor.defaults.options.disable_array_reorder = true;
87 JSONEditor.defaults.options.disable_array_delete_last_row = true;
88 JSONEditor.defaults.options.disable_array_delete_all_rows = false;
89 JSONEditor.defaults.options.array_controls_top=true;
90 JSONEditor.defaults.options.show_errors = 'always';
91 JSONEditor.defaults.options.keep_oneof_values=false;
92 JSONEditor.defaults.options.ajax=true;
93 JSONEditor.defaults.options.collapsed=true;
94 //JSONEditor.defaults.options.template = 'default';
95 }
96
97 renderJsonEditor() {
98 console.debug("Rendering OperationalPolicyModal");
99 var schema_json = this.state.loopCache.getOperationalPolicyJsonSchema();
100
101 if (schema_json == null) {
102 console.error("NO Operational policy schema found");
103 return;
sebdet4946e5b2019-07-10 12:32:36 +0200104 }
sebdetf9e2cee2019-08-09 18:36:09 +0200105 var operationalPoliciesData = this.state.loopCache.getOperationalPolicies();
sebdet4946e5b2019-07-10 12:32:36 +0200106
sebdetf9e2cee2019-08-09 18:36:09 +0200107 this.setState({
108 jsonEditor: new JSONEditor(document.getElementById("editor"),
109 { schema: schema_json.schema, startval: operationalPoliciesData })
110 })
sebdet493c3832019-07-15 17:26:18 +0200111 }
sebdet4946e5b2019-07-10 12:32:36 +0200112
113 render() {
114 return (
sebdetf9e2cee2019-08-09 18:36:09 +0200115 <ModalStyled size="xl" show={this.state.show} onHide={this.handleClose}>
sebdet4946e5b2019-07-10 12:32:36 +0200116 <Modal.Header closeButton>
117 <Modal.Title>Operational policies</Modal.Title>
118 </Modal.Header>
119 <Modal.Body>
sebdetf9e2cee2019-08-09 18:36:09 +0200120 <div id="editor" />
xuegaof248df62019-07-15 15:16:18 +0200121
sebdet4946e5b2019-07-10 12:32:36 +0200122 </Modal.Body>
123 <Modal.Footer>
124 <Button variant="secondary" onClick={this.handleClose}>
125 Close
126 </Button>
sebdetf9e2cee2019-08-09 18:36:09 +0200127 <Button variant="primary" onClick={this.handleSave}>
sebdet4946e5b2019-07-10 12:32:36 +0200128 Save Changes
129 </Button>
130 </Modal.Footer>
131 </ModalStyled>
132
133 );
134 }
sebdet493c3832019-07-15 17:26:18 +0200135}