sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 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'; |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 27 | import styled from 'styled-components'; |
sebdet | 2df6c08 | 2019-07-18 15:29:45 +0200 | [diff] [blame] | 28 | import LoopService from '../../../api/LoopService'; |
sebdet | 2dacb9b | 2019-07-17 13:48:44 +0200 | [diff] [blame] | 29 | import JSONEditor from '@json-editor/json-editor'; |
| 30 | |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 31 | const ModalStyled = styled(Modal)` |
| 32 | background-color: transparent; |
| 33 | ` |
| 34 | |
| 35 | export default class ConfigurationPolicyModal extends React.Component { |
| 36 | |
sebdet | 2dacb9b | 2019-07-17 13:48:44 +0200 | [diff] [blame] | 37 | state = { |
| 38 | show: true, |
| 39 | loopCache: this.props.loopCache, |
| 40 | jsonEditor: null, |
sebdet | 337f366 | 2019-09-06 18:11:51 +0200 | [diff] [blame^] | 41 | componentName: this.props.match.params.componentName |
sebdet | 2dacb9b | 2019-07-17 13:48:44 +0200 | [diff] [blame] | 42 | }; |
| 43 | |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 44 | constructor(props, context) { |
| 45 | super(props, context); |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 46 | this.handleClose = this.handleClose.bind(this); |
sebdet | 2df6c08 | 2019-07-18 15:29:45 +0200 | [diff] [blame] | 47 | this.handleSave = this.handleSave.bind(this); |
sebdet | 2dacb9b | 2019-07-17 13:48:44 +0200 | [diff] [blame] | 48 | this.renderJsonEditor = this.renderJsonEditor.bind(this); |
sebdet | 2df6c08 | 2019-07-18 15:29:45 +0200 | [diff] [blame] | 49 | } |
| 50 | |
| 51 | handleSave() { |
sebdet | 2df6c08 | 2019-07-18 15:29:45 +0200 | [diff] [blame] | 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); |
sebdet | 83ce076 | 2019-08-02 14:53:59 +0200 | [diff] [blame] | 57 | this.setState({ show: false }); |
| 58 | this.props.history.push('/'); |
sebdet | 2df6c08 | 2019-07-18 15:29:45 +0200 | [diff] [blame] | 59 | } |
| 60 | else { |
| 61 | console.info("NO validation errors found in config policy data"); |
| 62 | this.state.loopCache.updateMicroServiceProperties(this.state.componentName, editorData[0]); |
sebdet | 83ce076 | 2019-08-02 14:53:59 +0200 | [diff] [blame] | 63 | LoopService.setMicroServiceProperties(this.state.loopCache.getLoopName(), this.state.loopCache.getMicroServiceForName(this.state.componentName)).then(resp => { |
| 64 | this.setState({ show: false }); |
| 65 | this.props.history.push('/'); |
| 66 | this.props.loadLoopFunction(this.state.loopCache.getLoopName()); |
| 67 | }); |
sebdet | 2df6c08 | 2019-07-18 15:29:45 +0200 | [diff] [blame] | 68 | } |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 69 | } |
| 70 | |
| 71 | handleClose() { |
| 72 | this.setState({ show: false }); |
sebdet | 2df6c08 | 2019-07-18 15:29:45 +0200 | [diff] [blame] | 73 | this.props.history.push('/'); |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 74 | } |
| 75 | |
sebdet | 2dacb9b | 2019-07-17 13:48:44 +0200 | [diff] [blame] | 76 | componentDidMount() { |
| 77 | this.renderJsonEditor(); |
| 78 | } |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 79 | |
sebdet | 2dacb9b | 2019-07-17 13:48:44 +0200 | [diff] [blame] | 80 | renderJsonEditor() { |
sebdet | 2df6c08 | 2019-07-18 15:29:45 +0200 | [diff] [blame] | 81 | console.debug("Rendering ConfigurationPolicyModal ", this.state.componentName); |
| 82 | var toscaModel = this.state.loopCache.getMicroServiceJsonRepresentationForName(this.state.componentName); |
sebdet | 2dacb9b | 2019-07-17 13:48:44 +0200 | [diff] [blame] | 83 | if (toscaModel == null) { |
| 84 | return; |
| 85 | } |
sebdet | 2df6c08 | 2019-07-18 15:29:45 +0200 | [diff] [blame] | 86 | var editorData = this.state.loopCache.getMicroServicePropertiesForName(this.state.componentName); |
sebdet | 2dacb9b | 2019-07-17 13:48:44 +0200 | [diff] [blame] | 87 | |
| 88 | JSONEditor.defaults.options.theme = 'bootstrap4'; |
| 89 | //JSONEditor.defaults.options.iconlib = 'bootstrap2'; |
| 90 | JSONEditor.defaults.options.object_layout = 'grid'; |
| 91 | JSONEditor.defaults.options.disable_properties = true; |
| 92 | JSONEditor.defaults.options.disable_edit_json = false; |
| 93 | JSONEditor.defaults.options.disable_array_reorder = true; |
| 94 | JSONEditor.defaults.options.disable_array_delete_last_row = true; |
| 95 | JSONEditor.defaults.options.disable_array_delete_all_rows = false; |
| 96 | JSONEditor.defaults.options.show_errors = 'always'; |
| 97 | |
sebdet | 5976c17 | 2019-07-17 13:59:33 +0200 | [diff] [blame] | 98 | this.setState({ |
| 99 | jsonEditor: new JSONEditor(document.getElementById("editor"), |
| 100 | { schema: toscaModel.schema, startval: editorData }) |
| 101 | }) |
sebdet | 2dacb9b | 2019-07-17 13:48:44 +0200 | [diff] [blame] | 102 | } |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 103 | |
| 104 | render() { |
| 105 | return ( |
sebdet | f9e2cee | 2019-08-09 18:36:09 +0200 | [diff] [blame] | 106 | <ModalStyled size="xl" show={this.state.show} onHide={this.handleClose}> |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 107 | <Modal.Header closeButton> |
| 108 | <Modal.Title>Configuration policies</Modal.Title> |
| 109 | </Modal.Header> |
| 110 | <Modal.Body> |
sebdet | 2dacb9b | 2019-07-17 13:48:44 +0200 | [diff] [blame] | 111 | <div id="editor" /> |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 112 | |
| 113 | </Modal.Body> |
| 114 | <Modal.Footer> |
| 115 | <Button variant="secondary" onClick={this.handleClose}> |
| 116 | Close |
| 117 | </Button> |
sebdet | 2df6c08 | 2019-07-18 15:29:45 +0200 | [diff] [blame] | 118 | <Button variant="primary" onClick={this.handleSave}> |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 119 | Save Changes |
| 120 | </Button> |
| 121 | </Modal.Footer> |
| 122 | </ModalStyled> |
| 123 | |
| 124 | ); |
| 125 | } |
| 126 | } |