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'; |
| 28 | |
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, |
| 41 | }; |
| 42 | |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 43 | constructor(props, context) { |
| 44 | super(props, context); |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 45 | this.handleClose = this.handleClose.bind(this); |
sebdet | 2dacb9b | 2019-07-17 13:48:44 +0200 | [diff] [blame^] | 46 | this.renderJsonEditor = this.renderJsonEditor.bind(this); |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 47 | } |
| 48 | |
| 49 | handleClose() { |
| 50 | this.setState({ show: false }); |
| 51 | this.props.history.push('/') |
| 52 | } |
| 53 | |
sebdet | 2dacb9b | 2019-07-17 13:48:44 +0200 | [diff] [blame^] | 54 | componentDidMount() { |
| 55 | this.renderJsonEditor(); |
| 56 | } |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 57 | |
sebdet | 2dacb9b | 2019-07-17 13:48:44 +0200 | [diff] [blame^] | 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 | } |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 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> |
sebdet | 2dacb9b | 2019-07-17 13:48:44 +0200 | [diff] [blame^] | 87 | <div id="editor" /> |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 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 | } |