blob: 8178bf47f69377be2a5e326ae7aef3250f4f7b0a [file] [log] [blame]
sebdet493c3832019-07-15 17:26:18 +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';
sebdet493c3832019-07-15 17:26:18 +020027import styled from 'styled-components';
sebdet2df6c082019-07-18 15:29:45 +020028import LoopService from '../../../api/LoopService';
sebdet2dacb9b2019-07-17 13:48:44 +020029import JSONEditor from '@json-editor/json-editor';
30
sebdet493c3832019-07-15 17:26:18 +020031const ModalStyled = styled(Modal)`
32 background-color: transparent;
33`
34
35export default class ConfigurationPolicyModal extends React.Component {
36
sebdet2dacb9b2019-07-17 13:48:44 +020037 state = {
38 show: true,
39 loopCache: this.props.loopCache,
40 jsonEditor: null,
sebdet2df6c082019-07-18 15:29:45 +020041 componentName: "",
sebdet2dacb9b2019-07-17 13:48:44 +020042 };
43
sebdet493c3832019-07-15 17:26:18 +020044 constructor(props, context) {
45 super(props, context);
sebdet493c3832019-07-15 17:26:18 +020046 this.handleClose = this.handleClose.bind(this);
sebdet2df6c082019-07-18 15:29:45 +020047 this.handleSave = this.handleSave.bind(this);
sebdet2dacb9b2019-07-17 13:48:44 +020048 this.renderJsonEditor = this.renderJsonEditor.bind(this);
sebdet2df6c082019-07-18 15:29:45 +020049 this.state.componentName = props.match.params.componentName;
50 }
51
52 handleSave() {
53
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);
59 }
60 else {
61 console.info("NO validation errors found in config policy data");
62 this.state.loopCache.updateMicroServiceProperties(this.state.componentName, editorData[0]);
63 LoopService.setMicroServiceProperties(this.state.loopCache.getLoopName(), this.state.loopCache.getMicroServiceForName(this.state.componentName));
64 }
65
66 this.setState({ show: false });
67 this.props.history.push('/');
sebdet493c3832019-07-15 17:26:18 +020068 }
69
70 handleClose() {
71 this.setState({ show: false });
sebdet2df6c082019-07-18 15:29:45 +020072 this.props.history.push('/');
sebdet493c3832019-07-15 17:26:18 +020073 }
74
sebdet2dacb9b2019-07-17 13:48:44 +020075 componentDidMount() {
76 this.renderJsonEditor();
77 }
sebdet493c3832019-07-15 17:26:18 +020078
sebdet2dacb9b2019-07-17 13:48:44 +020079 renderJsonEditor() {
sebdet2df6c082019-07-18 15:29:45 +020080 console.debug("Rendering ConfigurationPolicyModal ", this.state.componentName);
81 var toscaModel = this.state.loopCache.getMicroServiceJsonRepresentationForName(this.state.componentName);
sebdet2dacb9b2019-07-17 13:48:44 +020082 if (toscaModel == null) {
83 return;
84 }
sebdet2df6c082019-07-18 15:29:45 +020085 var editorData = this.state.loopCache.getMicroServicePropertiesForName(this.state.componentName);
sebdet2dacb9b2019-07-17 13:48:44 +020086
87 JSONEditor.defaults.options.theme = 'bootstrap4';
88 //JSONEditor.defaults.options.iconlib = 'bootstrap2';
89 JSONEditor.defaults.options.object_layout = 'grid';
90 JSONEditor.defaults.options.disable_properties = true;
91 JSONEditor.defaults.options.disable_edit_json = false;
92 JSONEditor.defaults.options.disable_array_reorder = true;
93 JSONEditor.defaults.options.disable_array_delete_last_row = true;
94 JSONEditor.defaults.options.disable_array_delete_all_rows = false;
95 JSONEditor.defaults.options.show_errors = 'always';
96
sebdet5976c172019-07-17 13:59:33 +020097 this.setState({
98 jsonEditor: new JSONEditor(document.getElementById("editor"),
99 { schema: toscaModel.schema, startval: editorData })
100 })
sebdet2dacb9b2019-07-17 13:48:44 +0200101 }
sebdet493c3832019-07-15 17:26:18 +0200102
103 render() {
104 return (
105 <ModalStyled size="lg" show={this.state.show} onHide={this.handleClose}>
106 <Modal.Header closeButton>
107 <Modal.Title>Configuration policies</Modal.Title>
108 </Modal.Header>
109 <Modal.Body>
sebdet2dacb9b2019-07-17 13:48:44 +0200110 <div id="editor" />
sebdet493c3832019-07-15 17:26:18 +0200111
112 </Modal.Body>
113 <Modal.Footer>
114 <Button variant="secondary" onClick={this.handleClose}>
115 Close
116 </Button>
sebdet2df6c082019-07-18 15:29:45 +0200117 <Button variant="primary" onClick={this.handleSave}>
sebdet493c3832019-07-15 17:26:18 +0200118 Save Changes
119 </Button>
120 </Modal.Footer>
121 </ModalStyled>
122
123 );
124 }
125}