c0a2084f53cedb07cc53fa2bb9d2d26e550322c5
[clamp.git] / ui-react / src / components / dialogs / Loop / LoopPropertiesModal.js
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END============================================
19  * ===================================================================
20  *
21  */
22
23 import React from 'react'
24 import Button from 'react-bootstrap/Button';
25 import Modal from 'react-bootstrap/Modal';
26 import Form from 'react-bootstrap/Form';
27 import styled from 'styled-components';
28 import LoopService from '../../../api/LoopService';
29
30 const ModalStyled = styled(Modal)`
31         background-color: transparent;
32 `
33 export default class LoopPropertiesModal extends React.Component {
34
35         state = {
36                 show: true,
37                 loopCache: this.props.loopCache,
38                 temporaryPropertiesJson: JSON.parse(JSON.stringify(this.props.loopCache.getGlobalProperties()))
39         };
40
41         constructor(props, context) {
42                 super(props, context);
43
44                 this.handleClose = this.handleClose.bind(this);
45                 this.handleSave = this.handleSave.bind(this);
46                 this.handleChange = this.handleChange.bind(this);
47
48                 this.renderDcaeParameters = this.renderDcaeParameters.bind(this);
49                 this.renderAllParameters = this.renderAllParameters.bind(this);
50                 this.getDcaeParameters = this.getDcaeParameters.bind(this);
51         }
52
53         componentWillReceiveProps(newProps) {
54                 this.setState({
55                         loopCache: newProps.loopCache,
56                         temporaryPropertiesJson: JSON.parse(JSON.stringify(newProps.loopCache.getGlobalProperties()))
57                 });
58         }
59
60         handleClose() {
61                 this.props.history.push('/');
62         }
63
64         handleSave(event) {
65                 LoopService.updateGlobalProperties(this.state.loopCache.getLoopName(), this.state.temporaryPropertiesJson).then(resp => {
66                         this.setState({ show: false });
67                         this.props.history.push('/');
68                         this.props.loadLoopFunction(this.state.loopCache.getLoopName());
69                 });
70         }
71
72         handleChange(event) {
73                 this.setState({temporaryPropertiesJson:{[event.target.name]: JSON.parse(event.target.value)}});
74         }
75
76         renderAllParameters() {
77                 return (<Modal.Body>
78                         <Form>
79                                 {this.renderDcaeParameters()}
80                         </Form>
81                 </Modal.Body>
82                 );
83         }
84
85         getDcaeParameters() {
86                 if (typeof (this.state.temporaryPropertiesJson) !== "undefined") {
87                         return JSON.stringify(this.state.temporaryPropertiesJson["dcaeDeployParameters"]);
88                 } else {
89                         return "";
90                 }
91
92         }
93
94         renderDcaeParameters() {
95                 return (
96                         <Form.Group >
97                                 <Form.Label>Deploy Parameters</Form.Label>
98                                 <Form.Control as="textarea" rows="3" name="dcaeDeployParameters" onChange={this.handleChange} defaultValue={this.getDcaeParameters()}></Form.Control>
99                         </Form.Group>
100                 );
101         }
102
103         render() {
104                 return (
105                         <ModalStyled size="lg" show={this.state.show} onHide={this.handleClose} backdrop="static" keyboard={false} >
106                                 <Modal.Header closeButton>
107                                         <Modal.Title>Model Properties</Modal.Title>
108                                 </Modal.Header>
109                                         {this.renderAllParameters()}
110                                 <Modal.Footer>
111                                         <Button variant="secondary" type="null" onClick={this.handleClose}>Cancel</Button>
112                                         <Button variant="primary" type="submit" onClick={this.handleSave}>Save Changes</Button>
113                                 </Modal.Footer>
114                         </ModalStyled>
115                 );
116         }
117 }