7ca90b4936f0eb56b36c3f01189987c6da4d8a64
[clamp.git] / ui-react / src / components / dialogs / Loop / OpenLoopModal.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 Select from 'react-select';
25 import Button from 'react-bootstrap/Button';
26 import Modal from 'react-bootstrap/Modal';
27 import Form from 'react-bootstrap/Form';
28 import Row from 'react-bootstrap/Row';
29 import Col from 'react-bootstrap/Col';
30 import FormCheck from 'react-bootstrap/FormCheck'
31 import styled from 'styled-components';
32 import LoopService from '../../../api/LoopService';
33 import SvgGenerator from '../../loop_viewer/svg/SvgGenerator';
34 import LoopCache from '../../../api/LoopCache';
35
36 const ModalStyled = styled(Modal)`
37         background-color: transparent;
38 `
39 const CheckBoxStyled = styled(FormCheck.Input)`
40         margin-left:3rem;
41 `
42
43 export default class OpenLoopModal extends React.Component {
44         constructor(props, context) {
45                 super(props, context);
46
47                 this.getLoopNames = this.getLoopNames.bind(this);
48                 this.handleOpen = this.handleOpen.bind(this);
49                 this.handleClose = this.handleClose.bind(this);
50                 this.handleDropDownListChange = this.handleDropDownListChange.bind(this);
51                 this.showReadOnly = props.showReadOnly ? props.showReadOnly : true;
52                 this.state = {
53                         show: true,
54                         chosenLoopName: '',
55                         loopNames: [],
56                         loopCacheOpened: new LoopCache({})
57                 };
58         }
59
60         componentWillMount() {
61                 this.getLoopNames();
62         }
63
64         handleClose() {
65                 this.setState({ show: false });
66                 this.props.history.push('/');
67         }
68
69         handleDropDownListChange(e) {
70         LoopService.getLoop(e.value).then(loop => {
71             this.setState({
72                 chosenLoopName: e.value,
73                 loopCacheOpened: new LoopCache(loop)
74              });
75                 });
76         }
77
78         getLoopNames() {
79                 LoopService.getLoopNames().then(loopNames => {
80                     if (Object.entries(loopNames).length !== 0) {
81                         const loopOptions = loopNames.filter(loopName => loopName!=='undefined').map((loopName) => { return { label: loopName, value: loopName } });
82                 this.setState({ loopNames: loopOptions })
83                     }
84                 });
85         }
86
87         handleOpen() {
88                 console.info("Loop " + this.state.chosenLoopName + " is chosen");
89         this.handleClose();
90                 this.props.loadLoopFunction(this.state.chosenLoopName);
91         }
92
93         render() {
94                 return (
95                         <ModalStyled size="xl" show={this.state.show} onHide={this.handleClose} backdrop="static" keyboard={false} >
96                                 <Modal.Header closeButton>
97                                         <Modal.Title>Open Model</Modal.Title>
98                                 </Modal.Header>
99                                 <Modal.Body>
100                                         <Form.Group as={Row} controlId="formPlaintextEmail">
101                                                 <Form.Label column sm="2">Model Name:</Form.Label>
102                                                 <Col sm="10">
103                                                         <Select onChange={this.handleDropDownListChange}
104                                                         options={this.state.loopNames} />
105                                                 </Col>
106                                         </Form.Group>
107                                         <Form.Group as={Row} style={{alignItems: 'center'}} controlId="formSvgPreview">
108                                                 <Form.Label column sm="2">Model Preview:</Form.Label>
109                                                 <Col sm="10">
110                                                     <SvgGenerator loopCache={this.state.loopCacheOpened} clickable={false} generatedFrom={SvgGenerator.GENERATED_FROM_INSTANCE}/>
111                                                 </Col>
112                                         </Form.Group>
113                                         {this.showReadOnly === true ?
114                                                 <Form.Group as={Row} controlId="formBasicCheckbox">
115                                                         <Form.Check>
116                                                                 <FormCheck.Label>Read Only Mode:</FormCheck.Label>
117                                                                 <CheckBoxStyled style={{marginLeft: '3.5em'}} type="checkbox" />
118                                                         </Form.Check>
119                                                 </Form.Group>
120                                         : null}
121                                 </Modal.Body>
122                                 <Modal.Footer>
123                                         <Button variant="secondary" type="null" onClick={this.handleClose}>Cancel</Button>
124                                         <Button variant="primary" type="submit" onClick={this.handleOpen}>Open</Button>
125                                 </Modal.Footer>
126                         </ModalStyled>
127
128                 );
129         }
130 }