blob: 453ca6bb4244f9c9b38c181184797488f170b785 [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';
28
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,
41 };
42
sebdet493c3832019-07-15 17:26:18 +020043 constructor(props, context) {
44 super(props, context);
sebdet493c3832019-07-15 17:26:18 +020045 this.handleClose = this.handleClose.bind(this);
sebdet2dacb9b2019-07-17 13:48:44 +020046 this.renderJsonEditor = this.renderJsonEditor.bind(this);
sebdet493c3832019-07-15 17:26:18 +020047 }
48
49 handleClose() {
50 this.setState({ show: false });
51 this.props.history.push('/')
52 }
53
sebdet2dacb9b2019-07-17 13:48:44 +020054 componentDidMount() {
55 this.renderJsonEditor();
56 }
sebdet493c3832019-07-15 17:26:18 +020057
sebdet2dacb9b2019-07-17 13:48:44 +020058 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 }
sebdet493c3832019-07-15 17:26:18 +020079
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>
sebdet2dacb9b2019-07-17 13:48:44 +020087 <div id="editor" />
sebdet493c3832019-07-15 17:26:18 +020088
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}