Merge "Adding View BP template Menu"
[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
34 const ModalStyled = styled(Modal)`
35         background-color: transparent;
36 `
37 const CheckBoxStyled = styled(FormCheck.Input)`
38         margin-left:3rem;
39 `
40
41 export default class OpenLoopModal extends React.Component {
42         constructor(props, context) {
43                 super(props, context);
44
45                 this.getLoopNames = this.getLoopNames.bind(this);
46                 this.handleOpen = this.handleOpen.bind(this);
47                 this.handleClose = this.handleClose.bind(this);
48                 this.handleDropdownListChange = this.handleDropdownListChange.bind(this);
49                 this.state = {
50                         show: true,
51                         chosenLoopName: '',
52                         loopNames: []
53                 };
54         }
55
56         componentWillMount() {
57                 this.getLoopNames();
58         }
59
60         handleClose() {
61                 this.setState({ show: false });
62                 this.props.history.push('/');
63         }
64
65         handleDropdownListChange(e) {
66                 this.setState({ chosenLoopName: e.value });
67         }
68
69         getLoopNames() {
70                 LoopService.getLoopNames().then(loopNames => {
71                         const loopOptions = loopNames.map((loopName) => { return { label: loopName, value: loopName } });
72                         this.setState({ loopNames: loopOptions })
73                 });
74         }
75
76         handleOpen() {
77                 console.info("Loop " + this.state.chosenLoopName + " is chosen");
78                 this.setState({ show: false });
79                 this.props.history.push('/');
80                 this.props.loadLoopFunction(this.state.chosenLoopName);
81         }
82
83         render() {
84                 return (
85                         <ModalStyled size="lg" show={this.state.show} onHide={this.handleClose}>
86                                 <Modal.Header closeButton>
87                                         <Modal.Title>Open Model</Modal.Title>
88                                 </Modal.Header>
89                                 <Modal.Body>
90                                         <Form.Group as={Row} controlId="formPlaintextEmail">
91                                                 <Form.Label column sm="2">Model Name</Form.Label>
92                                                 <Col sm="10">
93                                                         <Select onChange={this.handleDropdownListChange} options={this.state.loopNames} />
94                                                 </Col>
95                                         </Form.Group>
96                                         <Form.Group controlId="formBasicChecbox">
97                                                 <Form.Check>
98                                                         <FormCheck.Label>Read Only</FormCheck.Label>
99                                                         <CheckBoxStyled type="checkbox" />
100                                                 </Form.Check>
101                                         </Form.Group>
102                                 </Modal.Body>
103                                 <Modal.Footer>
104                                         <Button variant="secondary" type="null" onClick={this.handleClose}>Cancel</Button>
105                                         <Button variant="primary" type="submit" onClick={this.handleOpen}>Open</Button>
106                                 </Modal.Footer>
107                         </ModalStyled>
108
109                 );
110         }
111 }