10473944f65f7587c261ffd80c0320af8c805072
[clamp.git] / ui-react / src / components / dialogs / Tosca / ViewLoopTemplatesModal.js
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, { forwardRef } from 'react'
25 import Button from 'react-bootstrap/Button';
26 import Modal from 'react-bootstrap/Modal';
27 import styled from 'styled-components';
28 import TemplateService from '../../../api/TemplateService';
29 import ArrowUpward from '@material-ui/icons/ArrowUpward';
30 import ChevronLeft from '@material-ui/icons/ChevronLeft';
31 import ChevronRight from '@material-ui/icons/ChevronRight';
32 import Clear from '@material-ui/icons/Clear';
33 import FirstPage from '@material-ui/icons/FirstPage';
34 import LastPage from '@material-ui/icons/LastPage';
35 import Search from '@material-ui/icons/Search';
36 import MaterialTable from "material-table";
37 import LoopCache from '../../../api/LoopCache';
38 import SvgGenerator from '../../loop_viewer/svg/SvgGenerator';
39
40 const ModalStyled = styled(Modal)`
41         background-color: transparent;
42 `
43
44 const cellStyle = { border: '1px solid black' };
45 const headerStyle = { backgroundColor: '#ddd',  border: '2px solid black'       };
46 const rowHeaderStyle = {backgroundColor:'#ddd',  fontSize: '15pt', text: 'bold', border: '1px solid black'};
47
48 export default class ViewLoopTemplatesModal extends React.Component {
49   state = {
50         show: true,
51                 content: 'Please select a loop template to display it',
52                 selectedRow: -1,
53                 loopTemplatesData: [],
54                 fakeLoopCacheWithTemplate: new LoopCache({}),
55                 loopTemplateColumnsDefinition: [
56                         { title: "#", field: "index", render: rowData => rowData.tableData.id + 1,
57                                 cellStyle: cellStyle,
58                                 headerStyle: headerStyle
59                         },
60                         { title: "Template Name", field: "name",
61                                 cellStyle: cellStyle,
62                                 headerStyle: headerStyle
63                         },
64                         { title: "Service Model Name", field: "modelService.serviceDetails.name",
65                                 cellStyle: cellStyle,
66                                 headerStyle: headerStyle
67                         },
68                         { title: "Loop Type Allowed", field: "allowedLoopType",
69                                 cellStyle: cellStyle,
70                                 headerStyle: headerStyle
71                         },
72                         { title: "# Instances Allowed", field: "maximumInstancesAllowed",
73                                 cellStyle: cellStyle,
74                                 headerStyle: headerStyle
75                         },
76                         { title: "Modified Date", field: "updatedDate", editable: 'never',
77                                 cellStyle: cellStyle,
78                                 headerStyle: headerStyle
79                         }
80                 ],
81                 tableIcons: {
82                         FirstPage: forwardRef((props, ref) => <FirstPage {...props} ref={ref} />),
83                         LastPage: forwardRef((props, ref) => <LastPage {...props} ref={ref} />),
84                         NextPage: forwardRef((props, ref) => <ChevronRight {...props} ref={ref} />),
85                         PreviousPage: forwardRef((props, ref) => <ChevronLeft {...props} ref={ref} />),
86                         ResetSearch: forwardRef((props, ref) => <Clear {...props} ref={ref} />),
87                         Search: forwardRef((props, ref) => <Search {...props} ref={ref} />),
88                         SortArrow: forwardRef((props, ref) => <ArrowUpward {...props} ref={ref} />)
89                 }
90         };
91
92         constructor(props, context) {
93                 super(props, context);
94                 this.handleClose = this.handleClose.bind(this);
95                 this.renderSvg = this.renderSvg.bind(this);
96                 this.getLoopTemplate = this.getLoopTemplate.bind(this);
97                 this.getAllLoopTemplates();
98         }
99
100         getAllLoopTemplates() {
101                 TemplateService.getAllLoopTemplates().then(templatesData => {
102                     this.setState({ loopTemplatesData: templatesData })
103                 });
104         }
105
106         getLoopTemplate(templateIdInDataArray) {
107             if (typeof templateIdInDataArray !== "undefined") {
108                 this.setState({ fakeLoopCacheWithTemplate:
109                 new LoopCache({
110                     "loopTemplate":this.state.loopTemplatesData[templateIdInDataArray],
111                     "name": "fakeLoop"
112                 })
113                 })
114                 } else {
115                 this.setState({ fakeLoopCacheWithTemplate: new LoopCache({}) })
116         }
117     }
118
119         handleClose() {
120                 this.setState({ show: false });
121                 this.props.history.push('/')
122         }
123
124         renderSvg() {
125                 return(
126                         <SvgGenerator loopCache={this.state.fakeLoopCacheWithTemplate} clickable={false} generatedFrom={SvgGenerator.GENERATED_FROM_TEMPLATE}/>
127                 )
128         }
129
130         render() {
131     return (
132                 <ModalStyled size="xl" show={this.state.show} onHide={this.handleClose} backdrop="static"  keyboard={false}>
133                         <Modal.Header closeButton>
134                         </Modal.Header>
135                         <Modal.Body>
136                            <MaterialTable
137                                   title={"View Blueprint MicroService Templates"}
138                                   data={this.state.loopTemplatesData}
139                                           columns={this.state.loopTemplateColumnsDefinition}
140                                           icons={this.state.tableIcons}
141                               onRowClick={(event, rowData) => {this.getLoopTemplate(rowData.tableData.id);this.setState({selectedRow: rowData.tableData.id})}}
142                                           options={{
143                                               headerStyle:rowHeaderStyle,
144                                               rowStyle: rowData => ({
145                                               backgroundColor: (this.state.selectedRow !== -1 && this.state.selectedRow === rowData.tableData.id) ? '#EEE' : '#FFF'
146                           })
147                       }}
148                 />
149                     {this.renderSvg()}
150                 </Modal.Body>
151                 <Modal.Footer>
152                         <Button variant="secondary" onClick={this.handleClose}>Close</Button>
153                </Modal.Footer>
154       </ModalStyled>
155       );
156     }
157   }