962ab4bdace82f80d23bcbd8cfe467f6ac647cdf
[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.getLoopTemplate = this.getLoopTemplate.bind(this);
96                 this.getAllLoopTemplates();
97         }
98
99         getAllLoopTemplates() {
100                 TemplateService.getAllLoopTemplates().then(templatesData => {
101                     this.setState({ loopTemplatesData: templatesData })
102                 });
103         }
104
105         getLoopTemplate(templateIdInDataArray) {
106             if (typeof templateIdInDataArray !== "undefined") {
107                 this.setState({ fakeLoopCacheWithTemplate:
108                 new LoopCache({
109                     "loopTemplate":this.state.loopTemplatesData[templateIdInDataArray],
110                     "name": "fakeLoop"
111                 })
112                 })
113                 } else {
114                 this.setState({ fakeLoopCacheWithTemplate: new LoopCache({}) })
115         }
116     }
117
118         handleClose() {
119                 this.setState({ show: false });
120                 this.props.history.push('/')
121         }
122
123         render() {
124     return (
125                 <ModalStyled size="xl" show={this.state.show} onHide={this.handleClose} backdrop="static"  keyboard={false}>
126                         <Modal.Header closeButton>
127                         </Modal.Header>
128                         <Modal.Body>
129                            <MaterialTable
130                                   title={"View Blueprint MicroService Templates"}
131                                   data={this.state.loopTemplatesData}
132                                           columns={this.state.loopTemplateColumnsDefinition}
133                                           icons={this.state.tableIcons}
134                               onRowClick={(event, rowData) => {this.getLoopTemplate(rowData.tableData.id);this.setState({selectedRow: rowData.tableData.id})}}
135                                           options={{
136                                               headerStyle:rowHeaderStyle,
137                                               rowStyle: rowData => ({
138                                               backgroundColor: (this.state.selectedRow !== -1 && this.state.selectedRow === rowData.tableData.id) ? '#EEE' : '#FFF'
139                           })
140                       }}
141                 />
142                     <SvgGenerator loopCache={this.state.fakeLoopCacheWithTemplate} clickable={false} generatedFrom={SvgGenerator.GENERATED_FROM_TEMPLATE}/>
143                 </Modal.Body>
144                 <Modal.Footer>
145                         <Button variant="secondary" onClick={this.handleClose}>Close</Button>
146                </Modal.Footer>
147       </ModalStyled>
148       );
149     }
150   }