Draft of Config policy
[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
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         };
42
43         constructor(props, context) {
44                 super(props, context);
45                 this.handleClose = this.handleClose.bind(this);
46                 this.renderJsonEditor = this.renderJsonEditor.bind(this);
47         }
48
49         handleClose() {
50                 this.setState({ show: false });
51                 this.props.history.push('/')
52         }
53
54         componentDidMount() {
55                 this.renderJsonEditor();
56         }
57
58         renderJsonEditor() {
59                 var toscaModel = this.state.loopCache.getMicroServiceJsonRepresentationForType("TCA_Jbv1z_v1_0_ResourceInstanceName1_tca");
60                 if (toscaModel == null) {
61                         return;
62                 }
63                 var editorData = this.state.loopCache.getMicroServiceProperties("TCA_Jbv1z_v1_0_ResourceInstanceName1_tca");
64
65                 JSONEditor.defaults.options.theme = 'bootstrap4';
66                 //JSONEditor.defaults.options.iconlib = 'bootstrap2';
67                 JSONEditor.defaults.options.object_layout = 'grid';
68                 JSONEditor.defaults.options.disable_properties = true;
69                 JSONEditor.defaults.options.disable_edit_json = false;
70                 JSONEditor.defaults.options.disable_array_reorder = true;
71                 JSONEditor.defaults.options.disable_array_delete_last_row = true;
72                 JSONEditor.defaults.options.disable_array_delete_all_rows = false;
73                 JSONEditor.defaults.options.show_errors = 'always';
74
75                 this.state.jsonEditor = new JSONEditor(document.getElementById("editor"),
76                         { schema: toscaModel.schema, startval: editorData });
77
78         }
79
80         render() {
81                 return (
82                         <ModalStyled size="lg" show={this.state.show} onHide={this.handleClose}>
83                                 <Modal.Header closeButton>
84                                         <Modal.Title>Configuration policies</Modal.Title>
85                                 </Modal.Header>
86                                 <Modal.Body>
87                                         <div id="editor" />
88
89                                 </Modal.Body>
90                                 <Modal.Footer>
91                                         <Button variant="secondary" onClick={this.handleClose}>
92                                                 Close
93                     </Button>
94                                         <Button variant="primary" onClick={this.handleClose}>
95                                                 Save Changes
96                     </Button>
97                                 </Modal.Footer>
98                         </ModalStyled>
99
100                 );
101         }
102 }