Minor UI fixes for dialogues and Tosca upload feature
[clamp.git] / ui-react / src / components / dialogs / ConfigurationPolicy / ConfigurationPolicyModal.js
1 /*-
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
24 import React from 'react'
25 import Button from 'react-bootstrap/Button';
26 import Modal from 'react-bootstrap/Modal';
27 import styled from 'styled-components';
28 import LoopService from '../../../api/LoopService';
29 import JSONEditor from '@json-editor/json-editor';
30
31 const ModalStyled = styled(Modal)`
32         background-color: transparent;
33 `
34
35 export default class ConfigurationPolicyModal 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         };
43
44         constructor(props, context) {
45                 super(props, context);
46                 this.handleClose = this.handleClose.bind(this);
47                 this.handleSave = this.handleSave.bind(this);
48                 this.renderJsonEditor = this.renderJsonEditor.bind(this);
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                         this.setState({ show: false });
58                         this.props.history.push('/');
59                 }
60                 else {
61                         console.info("NO validation errors found in config policy data");
62                         this.state.loopCache.updateMicroServiceProperties(this.state.policyName, editorData[0]);
63                         LoopService.setMicroServiceProperties(this.state.loopCache.getLoopName(), this.state.loopCache.getMicroServiceForName(this.state.policyName)).then(resp => {
64                                 this.setState({ show: false });
65                                 this.props.history.push('/');
66                                 this.props.loadLoopFunction(this.state.loopCache.getLoopName());
67                         });
68                 }
69         }
70
71         handleClose() {
72                 this.setState({ show: false });
73                 this.props.history.push('/');
74         }
75
76         componentDidMount() {
77                 this.renderJsonEditor();
78         }
79
80         renderJsonEditor() {
81                 console.debug("Rendering ConfigurationPolicyModal ", this.state.policyName);
82                 var toscaModel = this.state.loopCache.getMicroServiceJsonRepresentationForName(this.state.policyName);
83                 if (toscaModel == null) {
84                         return;
85                 }
86                 var editorData = this.state.loopCache.getMicroServicePropertiesForName(this.state.policyName);
87
88                 this.setState({
89                         jsonEditor: new JSONEditor(document.getElementById("editor"),
90                                 {
91                                     schema: toscaModel,
92                                     startval: editorData,
93                                     theme: 'bootstrap4',
94                     object_layout: 'grid',
95                     disable_properties: true,
96                     disable_edit_json: false,
97                     disable_array_reorder: true,
98                     disable_array_delete_last_row: true,
99                     disable_array_delete_all_rows: false,
100                     show_errors: 'always'
101                                  })
102                 })
103         }
104
105         render() {
106                 return (
107                         <ModalStyled size="xl" show={this.state.show} onHide={this.handleClose} backdrop="static" keyboard={false} >
108                                 <Modal.Header closeButton>
109                                         <Modal.Title>Configuration policies</Modal.Title>
110                                 </Modal.Header>
111                                 <Modal.Body>
112                                         <div id="editor" />
113
114                                 </Modal.Body>
115                                 <Modal.Footer>
116                                         <Button variant="secondary" onClick={this.handleClose}>
117                                                 Close
118                     </Button>
119                                         <Button variant="primary" onClick={this.handleSave}>
120                                                 Save Changes
121                     </Button>
122                                 </Modal.Footer>
123                         </ModalStyled>
124
125                 );
126         }
127 }