blob: a8e8dee1fbe72f1376ccdf60c6eaed91b1f5ebf1 [file] [log] [blame]
sebdetd2a4df02020-02-26 15:47:30 -08001/*-
2 * ============LICENSE_START=======================================================
3 * ONAP CLAMP
4 * ================================================================================
5 * Copyright (C) 2020 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
23import React from 'react'
24import Select from 'react-select';
25import Button from 'react-bootstrap/Button';
26import Modal from 'react-bootstrap/Modal';
27import Form from 'react-bootstrap/Form';
28import Row from 'react-bootstrap/Row';
29import Col from 'react-bootstrap/Col';
30import styled from 'styled-components';
31import LoopService from '../../../api/LoopService';
32import TemplateService from '../../../api/TemplateService';
sebdetc0ec0fc2020-05-18 12:31:11 +020033import LoopCache from '../../../api/LoopCache';
34import SvgGenerator from '../../loop_viewer/svg/SvgGenerator';
sebdetd2a4df02020-02-26 15:47:30 -080035
36const ModalStyled = styled(Modal)`
37 background-color: transparent;
38`
39
40export default class CreateLoopModal extends React.Component {
41 constructor(props, context) {
42 super(props, context);
43
sebdetc0ec0fc2020-05-18 12:31:11 +020044 this.getAllLoopTemplates = this.getAllLoopTemplates.bind(this);
sebdetd2a4df02020-02-26 15:47:30 -080045 this.handleCreate = this.handleCreate.bind(this);
46 this.handleModelName = this.handleModelName.bind(this);
47 this.handleClose = this.handleClose.bind(this);
sebdetc0ec0fc2020-05-18 12:31:11 +020048 this.handleDropDownListChange = this.handleDropDownListChange.bind(this);
sebdetd2a4df02020-02-26 15:47:30 -080049 this.state = {
50 show: true,
51 chosenTemplateName: '',
52 modelName: '',
sebdetc0ec0fc2020-05-18 12:31:11 +020053 templateNames: [],
54 fakeLoopCacheWithTemplate: new LoopCache({})
sebdetd2a4df02020-02-26 15:47:30 -080055 };
56 }
57
58 componentWillMount() {
sebdetc0ec0fc2020-05-18 12:31:11 +020059 this.getAllLoopTemplates();
sebdetd2a4df02020-02-26 15:47:30 -080060 }
61
62 handleClose() {
63 this.setState({ show: false });
64 this.props.history.push('/');
65 }
66
sebdetc0ec0fc2020-05-18 12:31:11 +020067 handleDropDownListChange(e) {
68 if (typeof e.value !== "undefined") {
69 this.setState({
70 fakeLoopCacheWithTemplate:
71 new LoopCache({
72 "loopTemplate":e.templateObject,
73 "name": "fakeLoop"
74 }),
75 chosenTemplateName: e.value
76 })
77 } else {
78 this.setState({ fakeLoopCacheWithTemplate: new LoopCache({}) })
79 }
sebdetd2a4df02020-02-26 15:47:30 -080080 }
81
sebdetc0ec0fc2020-05-18 12:31:11 +020082 getAllLoopTemplates() {
83 TemplateService.getAllLoopTemplates().then(templatesData => {
84 const templateOptions = templatesData.map((templateData) => { return { label: templateData.name, value: templateData.name, templateObject: templateData } });
85 this.setState({
86 templateNames: templateOptions })
sebdetd2a4df02020-02-26 15:47:30 -080087 });
88 }
89
90 handleCreate() {
91 if (!this.state.modelName) {
92 alert("A model name is required");
93 return;
94 }
jingjincs3173d552020-03-04 09:11:10 +010095 console.debug("Create Model " + this.state.modelName + ", Template " + this.state.chosenTemplateName + " is chosen");
sebdetd2a4df02020-02-26 15:47:30 -080096 this.setState({ show: false });
97 LoopService.createLoop("LOOP_" + this.state.modelName, this.state.chosenTemplateName).then(text => {
98 console.debug("CreateLoop response received: ", text);
99 try {
100 this.props.history.push('/');
101 this.props.loadLoopFunction("LOOP_" + this.state.modelName);
102 } catch(err) {
103 alert(text);
104 this.props.history.push('/');
105 }
106 })
107 .catch(error => {
108 console.debug("Create Loop failed");
109 });
sebdetd2a4df02020-02-26 15:47:30 -0800110 }
111
112 handleModelName = event => {
jingjincs3173d552020-03-04 09:11:10 +0100113 this.setState({
114 modelName: event.target.value
115 })
sebdetd2a4df02020-02-26 15:47:30 -0800116 }
117
118 render() {
119 return (
Ted Humphreydf68db22020-04-16 17:36:17 +0000120 <ModalStyled size="xl" show={this.state.show} onHide={this.handleClose} backdrop="static" keyboard={false} >
sebdetd2a4df02020-02-26 15:47:30 -0800121 <Modal.Header closeButton>
122 <Modal.Title>Create Model</Modal.Title>
123 </Modal.Header>
124 <Modal.Body>
125 <Form.Group as={Row} controlId="formPlaintextEmail">
Ted Humphreydf68db22020-04-16 17:36:17 +0000126 <Form.Label column sm="2">Template Name:</Form.Label>
sebdetd2a4df02020-02-26 15:47:30 -0800127 <Col sm="10">
sebdetc0ec0fc2020-05-18 12:31:11 +0200128 <Select onChange={this.handleDropDownListChange} options={this.state.templateNames} />
sebdetd2a4df02020-02-26 15:47:30 -0800129 </Col>
130 </Form.Group>
sebdetc0ec0fc2020-05-18 12:31:11 +0200131 <Form.Group as={Row} style={{alignItems: 'center'}} controlId="formSvgPreview">
132 <Form.Label column sm="2">Model Preview:</Form.Label>
133 <Col sm="10">
134 <SvgGenerator loopCache={this.state.fakeLoopCacheWithTemplate} clickable={false} generatedFrom={SvgGenerator.GENERATED_FROM_TEMPLATE}/>
135 </Col>
136 </Form.Group>
Ted Humphreydf68db22020-04-16 17:36:17 +0000137 <Form.Group as={Row} controlId="formPlaintextEmail">
sebdetd2a4df02020-02-26 15:47:30 -0800138 <Form.Label column sm="2">Model Name:</Form.Label>
Ted Humphreydf68db22020-04-16 17:36:17 +0000139 <input type="text" style={{width: '50%', marginLeft: '1em' }}
sebdetd2a4df02020-02-26 15:47:30 -0800140 value={this.state.modelName}
141 onChange={this.handleModelName}
142 />
143 </Form.Group>
144 </Modal.Body>
145 <Modal.Footer>
146 <Button variant="secondary" type="null" onClick={this.handleClose}>Cancel</Button>
147 <Button variant="primary" type="submit" onClick={this.handleCreate}>Create</Button>
148 </Modal.Footer>
149 </ModalStyled>
sebdetd2a4df02020-02-26 15:47:30 -0800150 );
151 }
Ted Humphreydf68db22020-04-16 17:36:17 +0000152}