change -1 to No Limit in View All Templates for # Instances Allowed
[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                         // replace -1 in maximumInstancesAllowed with more meaningful 'No Limit'
103                         for (let item in templatesData) {
104                                 if (templatesData[item].maximumInstancesAllowed === -1) {
105                                         templatesData[item].maximumInstancesAllowed = 'No Limit';
106                                 }
107                         } 
108                         this.setState({ loopTemplatesData: templatesData })
109                 });
110         }
111
112         getLoopTemplate(templateIdInDataArray) {
113             if (typeof templateIdInDataArray !== "undefined") {
114                 this.setState({ fakeLoopCacheWithTemplate:
115                 new LoopCache({
116                     "loopTemplate":this.state.loopTemplatesData[templateIdInDataArray],
117                     "name": "fakeLoop"
118                 })
119                 })
120                 } else {
121                 this.setState({ fakeLoopCacheWithTemplate: new LoopCache({}) })
122         }
123     }
124
125         handleClose() {
126                 this.setState({ show: false });
127                 this.props.history.push('/')
128         }
129
130         renderSvg() {
131                 return(
132                         <SvgGenerator loopCache={this.state.fakeLoopCacheWithTemplate} clickable={false} generatedFrom={SvgGenerator.GENERATED_FROM_TEMPLATE}/>
133                 )
134         }
135
136         render() {
137     return (
138                 <ModalStyled size="xl" show={this.state.show} onHide={this.handleClose} backdrop="static"  keyboard={false}>
139                         <Modal.Header closeButton>
140                         </Modal.Header>
141                         <Modal.Body>
142                            <MaterialTable
143                                   title={"View Blueprint MicroService Templates"}
144                                   data={this.state.loopTemplatesData}
145                                           columns={this.state.loopTemplateColumnsDefinition}
146                                           icons={this.state.tableIcons}
147                               onRowClick={(event, rowData) => {this.getLoopTemplate(rowData.tableData.id);this.setState({selectedRow: rowData.tableData.id})}}
148                                           options={{
149                                               headerStyle:rowHeaderStyle,
150                                               rowStyle: rowData => ({
151                                               backgroundColor: (this.state.selectedRow !== -1 && this.state.selectedRow === rowData.tableData.id) ? '#EEE' : '#FFF'
152                           })
153                       }}
154                 />
155                     {this.renderSvg()}
156                 </Modal.Body>
157                 <Modal.Footer>
158                         <Button variant="secondary" onClick={this.handleClose}>Close</Button>
159                </Modal.Footer>
160       </ModalStyled>
161       );
162     }
163   }