sebdet | 4946e5b | 2019-07-10 12:32:36 +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 | 4946e5b | 2019-07-10 12:32:36 +0200 | [diff] [blame] | 27 | import styled from 'styled-components'; |
sebdet | f9e2cee | 2019-08-09 18:36:09 +0200 | [diff] [blame] | 28 | import LoopService from '../../../api/LoopService'; |
| 29 | import JSONEditor from '@json-editor/json-editor'; |
sebdet | 4946e5b | 2019-07-10 12:32:36 +0200 | [diff] [blame] | 30 | |
| 31 | const ModalStyled = styled(Modal)` |
| 32 | background-color: transparent; |
| 33 | ` |
| 34 | |
| 35 | export default class OperationalPolicyModal extends React.Component { |
| 36 | |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 37 | state = { |
| 38 | show: true, |
| 39 | loopCache: this.props.loopCache, |
sebdet | 337f366 | 2019-09-06 18:11:51 +0200 | [diff] [blame] | 40 | jsonEditor: null |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 41 | }; |
| 42 | |
sebdet | 4946e5b | 2019-07-10 12:32:36 +0200 | [diff] [blame] | 43 | constructor(props, context) { |
| 44 | super(props, context); |
sebdet | 4946e5b | 2019-07-10 12:32:36 +0200 | [diff] [blame] | 45 | this.handleClose = this.handleClose.bind(this); |
sebdet | f9e2cee | 2019-08-09 18:36:09 +0200 | [diff] [blame] | 46 | this.handleSave = this.handleSave.bind(this); |
| 47 | this.renderJsonEditor = this.renderJsonEditor.bind(this); |
| 48 | this.setDefaultJsonEditorOptions(); |
| 49 | } |
| 50 | |
| 51 | handleSave() { |
| 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); |
xuegao | 0efeb6b | 2019-10-07 14:36:34 +0200 | [diff] [blame] | 57 | this.props.showAlert(errors); |
sebdet | f9e2cee | 2019-08-09 18:36:09 +0200 | [diff] [blame] | 58 | } |
| 59 | else { |
| 60 | console.info("NO validation errors found in config policy data"); |
| 61 | this.state.loopCache.updateOperationalPolicyProperties(editorData); |
| 62 | LoopService.setOperationalPolicyProperties(this.state.loopCache.getLoopName(), this.state.loopCache.getOperationalPolicies()).then(resp => { |
| 63 | this.setState({ show: false }); |
| 64 | this.props.history.push('/'); |
| 65 | this.props.loadLoopFunction(this.state.loopCache.getLoopName()); |
| 66 | }); |
| 67 | } |
sebdet | 4946e5b | 2019-07-10 12:32:36 +0200 | [diff] [blame] | 68 | } |
| 69 | |
| 70 | handleClose() { |
| 71 | this.setState({ show: false }); |
sebdet | f9e2cee | 2019-08-09 18:36:09 +0200 | [diff] [blame] | 72 | this.props.history.push('/'); |
sebdet | 4946e5b | 2019-07-10 12:32:36 +0200 | [diff] [blame] | 73 | } |
| 74 | |
sebdet | f9e2cee | 2019-08-09 18:36:09 +0200 | [diff] [blame] | 75 | componentDidMount() { |
| 76 | this.renderJsonEditor(); |
| 77 | } |
| 78 | |
| 79 | setDefaultJsonEditorOptions() { |
xuegao | 83fe2b0 | 2019-09-25 11:23:18 +0200 | [diff] [blame] | 80 | JSONEditor.defaults.themes.myBootstrap4 = JSONEditor.defaults.themes.bootstrap4.extend({ |
| 81 | getTab: function(text,tabId) { |
| 82 | var liel = document.createElement('li'); |
| 83 | liel.classList.add('nav-item'); |
| 84 | var ael = document.createElement("a"); |
| 85 | ael.classList.add("nav-link"); |
| 86 | ael.setAttribute("style",'padding:10px;max-width:160px;'); |
| 87 | ael.setAttribute("href", "#" + tabId); |
| 88 | ael.setAttribute('data-toggle', 'tab'); |
| 89 | text.setAttribute("style",'word-wrap:break-word;'); |
| 90 | ael.appendChild(text); |
| 91 | liel.appendChild(ael); |
| 92 | return liel; |
| 93 | } |
| 94 | }); |
| 95 | JSONEditor.defaults.options.theme = 'myBootstrap4'; |
sebdet | f9e2cee | 2019-08-09 18:36:09 +0200 | [diff] [blame] | 96 | JSONEditor.defaults.options.object_layout = 'grid'; |
| 97 | JSONEditor.defaults.options.disable_properties = true; |
| 98 | JSONEditor.defaults.options.disable_edit_json = false; |
| 99 | JSONEditor.defaults.options.disable_array_reorder = true; |
| 100 | JSONEditor.defaults.options.disable_array_delete_last_row = true; |
| 101 | JSONEditor.defaults.options.disable_array_delete_all_rows = false; |
| 102 | JSONEditor.defaults.options.array_controls_top=true; |
| 103 | JSONEditor.defaults.options.show_errors = 'always'; |
| 104 | JSONEditor.defaults.options.keep_oneof_values=false; |
sebdet | f9e2cee | 2019-08-09 18:36:09 +0200 | [diff] [blame] | 105 | JSONEditor.defaults.options.collapsed=true; |
| 106 | //JSONEditor.defaults.options.template = 'default'; |
| 107 | } |
| 108 | |
| 109 | renderJsonEditor() { |
| 110 | console.debug("Rendering OperationalPolicyModal"); |
| 111 | var schema_json = this.state.loopCache.getOperationalPolicyJsonSchema(); |
| 112 | |
| 113 | if (schema_json == null) { |
| 114 | console.error("NO Operational policy schema found"); |
| 115 | return; |
sebdet | 4946e5b | 2019-07-10 12:32:36 +0200 | [diff] [blame] | 116 | } |
sebdet | f9e2cee | 2019-08-09 18:36:09 +0200 | [diff] [blame] | 117 | var operationalPoliciesData = this.state.loopCache.getOperationalPolicies(); |
sebdet | 4946e5b | 2019-07-10 12:32:36 +0200 | [diff] [blame] | 118 | |
sebdet | f9e2cee | 2019-08-09 18:36:09 +0200 | [diff] [blame] | 119 | this.setState({ |
| 120 | jsonEditor: new JSONEditor(document.getElementById("editor"), |
| 121 | { schema: schema_json.schema, startval: operationalPoliciesData }) |
| 122 | }) |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 123 | } |
sebdet | 4946e5b | 2019-07-10 12:32:36 +0200 | [diff] [blame] | 124 | |
| 125 | render() { |
| 126 | return ( |
sebdet | f9e2cee | 2019-08-09 18:36:09 +0200 | [diff] [blame] | 127 | <ModalStyled size="xl" show={this.state.show} onHide={this.handleClose}> |
sebdet | 4946e5b | 2019-07-10 12:32:36 +0200 | [diff] [blame] | 128 | <Modal.Header closeButton> |
| 129 | <Modal.Title>Operational policies</Modal.Title> |
| 130 | </Modal.Header> |
| 131 | <Modal.Body> |
sebdet | f9e2cee | 2019-08-09 18:36:09 +0200 | [diff] [blame] | 132 | <div id="editor" /> |
xuegao | f248df6 | 2019-07-15 15:16:18 +0200 | [diff] [blame] | 133 | |
sebdet | 4946e5b | 2019-07-10 12:32:36 +0200 | [diff] [blame] | 134 | </Modal.Body> |
| 135 | <Modal.Footer> |
| 136 | <Button variant="secondary" onClick={this.handleClose}> |
| 137 | Close |
| 138 | </Button> |
sebdet | f9e2cee | 2019-08-09 18:36:09 +0200 | [diff] [blame] | 139 | <Button variant="primary" onClick={this.handleSave}> |
sebdet | 4946e5b | 2019-07-10 12:32:36 +0200 | [diff] [blame] | 140 | Save Changes |
| 141 | </Button> |
| 142 | </Modal.Footer> |
| 143 | </ModalStyled> |
| 144 | |
| 145 | ); |
| 146 | } |
sebdet | 493c383 | 2019-07-15 17:26:18 +0200 | [diff] [blame] | 147 | } |