blob: da65ac9f10e0416203f1dc8eea9db9f8b3fa3f36 [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,
sebdetc11160e2020-02-25 15:13:31 -080041 policyName: this.props.match.params.policyName
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 }
50
51 handleSave() {
sebdet2df6c082019-07-18 15:29:45 +020052 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);
sebdet83ce0762019-08-02 14:53:59 +020057 this.setState({ show: false });
58 this.props.history.push('/');
sebdet2df6c082019-07-18 15:29:45 +020059 }
60 else {
61 console.info("NO validation errors found in config policy data");
sebdetc11160e2020-02-25 15:13:31 -080062 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 => {
sebdet83ce0762019-08-02 14:53:59 +020064 this.setState({ show: false });
65 this.props.history.push('/');
66 this.props.loadLoopFunction(this.state.loopCache.getLoopName());
67 });
sebdet2df6c082019-07-18 15:29:45 +020068 }
sebdet493c3832019-07-15 17:26:18 +020069 }
70
71 handleClose() {
72 this.setState({ show: false });
sebdet2df6c082019-07-18 15:29:45 +020073 this.props.history.push('/');
sebdet493c3832019-07-15 17:26:18 +020074 }
75
sebdet2dacb9b2019-07-17 13:48:44 +020076 componentDidMount() {
77 this.renderJsonEditor();
78 }
sebdet493c3832019-07-15 17:26:18 +020079
sebdet2dacb9b2019-07-17 13:48:44 +020080 renderJsonEditor() {
sebdetc11160e2020-02-25 15:13:31 -080081 console.debug("Rendering ConfigurationPolicyModal ", this.state.policyName);
82 var toscaModel = this.state.loopCache.getMicroServiceJsonRepresentationForName(this.state.policyName);
sebdet2dacb9b2019-07-17 13:48:44 +020083 if (toscaModel == null) {
84 return;
85 }
sebdetc11160e2020-02-25 15:13:31 -080086 var editorData = this.state.loopCache.getMicroServicePropertiesForName(this.state.policyName);
sebdet2dacb9b2019-07-17 13:48:44 +020087
sebdet5976c172019-07-17 13:59:33 +020088 this.setState({
89 jsonEditor: new JSONEditor(document.getElementById("editor"),
sebdet2dd4e992020-03-04 15:47:39 -080090 {
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 })
sebdet5976c172019-07-17 13:59:33 +0200102 })
sebdet2dacb9b2019-07-17 13:48:44 +0200103 }
sebdet493c3832019-07-15 17:26:18 +0200104
105 render() {
106 return (
sebdetf9e2cee2019-08-09 18:36:09 +0200107 <ModalStyled size="xl" show={this.state.show} onHide={this.handleClose}>
sebdet493c3832019-07-15 17:26:18 +0200108 <Modal.Header closeButton>
109 <Modal.Title>Configuration policies</Modal.Title>
110 </Modal.Header>
111 <Modal.Body>
sebdet2dacb9b2019-07-17 13:48:44 +0200112 <div id="editor" />
sebdet493c3832019-07-15 17:26:18 +0200113
114 </Modal.Body>
115 <Modal.Footer>
116 <Button variant="secondary" onClick={this.handleClose}>
117 Close
118 </Button>
sebdet2df6c082019-07-18 15:29:45 +0200119 <Button variant="primary" onClick={this.handleSave}>
sebdet493c3832019-07-15 17:26:18 +0200120 Save Changes
121 </Button>
122 </Modal.Footer>
123 </ModalStyled>
124
125 );
126 }
127}