blob: eb6e70f3d68cdd00f882c5299450a2770cf29f55 [file] [log] [blame]
drveerendra684057e2019-11-11 19:37:39 -05001/*-
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
24import React, { forwardRef } from 'react'
25import Button from 'react-bootstrap/Button';
26import Modal from 'react-bootstrap/Modal';
27import styled from 'styled-components';
sebdetaa486be2020-02-18 02:00:11 -080028import TemplateService from '../../../api/TemplateService';
drveerendra684057e2019-11-11 19:37:39 -050029import ArrowUpward from '@material-ui/icons/ArrowUpward';
30import ChevronLeft from '@material-ui/icons/ChevronLeft';
31import ChevronRight from '@material-ui/icons/ChevronRight';
32import Clear from '@material-ui/icons/Clear';
33import FirstPage from '@material-ui/icons/FirstPage';
34import LastPage from '@material-ui/icons/LastPage';
35import Search from '@material-ui/icons/Search';
36import MaterialTable from "material-table";
sebdetc0ec0fc2020-05-18 12:31:11 +020037import LoopCache from '../../../api/LoopCache';
38import SvgGenerator from '../../loop_viewer/svg/SvgGenerator';
drveerendra684057e2019-11-11 19:37:39 -050039
40const ModalStyled = styled(Modal)`
41 background-color: transparent;
42`
jingjincs3173d552020-03-04 09:11:10 +010043
drveerendra684057e2019-11-11 19:37:39 -050044const cellStyle = { border: '1px solid black' };
45const headerStyle = { backgroundColor: '#ddd', border: '2px solid black' };
46const rowHeaderStyle = {backgroundColor:'#ddd', fontSize: '15pt', text: 'bold', border: '1px solid black'};
47
sebdet3b7f6692020-02-17 06:03:31 -080048export default class ViewLoopTemplatesModal extends React.Component {
drveerendra684057e2019-11-11 19:37:39 -050049 state = {
jingjincs3173d552020-03-04 09:11:10 +010050 show: true,
sebdet3b7f6692020-02-17 06:03:31 -080051 content: 'Please select a loop template to display it',
drveerendra684057e2019-11-11 19:37:39 -050052 selectedRow: -1,
sebdetc0ec0fc2020-05-18 12:31:11 +020053 loopTemplatesData: [],
54 fakeLoopCacheWithTemplate: new LoopCache({}),
sebdet3b7f6692020-02-17 06:03:31 -080055 loopTemplateColumnsDefinition: [
drveerendra684057e2019-11-11 19:37:39 -050056 { title: "#", field: "index", render: rowData => rowData.tableData.id + 1,
57 cellStyle: cellStyle,
58 headerStyle: headerStyle
59 },
sebdet3b7f6692020-02-17 06:03:31 -080060 { title: "Template Name", field: "name",
drveerendra684057e2019-11-11 19:37:39 -050061 cellStyle: cellStyle,
62 headerStyle: headerStyle
63 },
sebdet3b7f6692020-02-17 06:03:31 -080064 { title: "Service Model Name", field: "modelService.serviceDetails.name",
drveerendra684057e2019-11-11 19:37:39 -050065 cellStyle: cellStyle,
66 headerStyle: headerStyle
67 },
sebdet3b7f6692020-02-17 06:03:31 -080068 { title: "Loop Type Allowed", field: "allowedLoopType",
drveerendra684057e2019-11-11 19:37:39 -050069 cellStyle: cellStyle,
70 headerStyle: headerStyle
71 },
sebdet3b7f6692020-02-17 06:03:31 -080072 { title: "# Instances Allowed", field: "maximumInstancesAllowed",
drveerendra684057e2019-11-11 19:37:39 -050073 cellStyle: cellStyle,
74 headerStyle: headerStyle
75 },
sebdet3b7f6692020-02-17 06:03:31 -080076 { title: "Modified Date", field: "updatedDate", editable: 'never',
drveerendra684057e2019-11-11 19:37:39 -050077 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);
Ted Humphrey083e5a22020-07-08 16:48:40 -040095 this.renderSvg = this.renderSvg.bind(this);
sebdetc0ec0fc2020-05-18 12:31:11 +020096 this.getLoopTemplate = this.getLoopTemplate.bind(this);
97 this.getAllLoopTemplates();
drveerendra684057e2019-11-11 19:37:39 -050098 }
99
sebdetc0ec0fc2020-05-18 12:31:11 +0200100 getAllLoopTemplates() {
101 TemplateService.getAllLoopTemplates().then(templatesData => {
Ted Humphreydb90efc2020-07-29 18:59:12 -0400102 // 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 })
drveerendra684057e2019-11-11 19:37:39 -0500109 });
110 }
111
sebdetc0ec0fc2020-05-18 12:31:11 +0200112 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 })
jingjincs3173d552020-03-04 09:11:10 +0100120 } else {
sebdetc0ec0fc2020-05-18 12:31:11 +0200121 this.setState({ fakeLoopCacheWithTemplate: new LoopCache({}) })
122 }
jingjincs3173d552020-03-04 09:11:10 +0100123 }
drveerendra684057e2019-11-11 19:37:39 -0500124
125 handleClose() {
126 this.setState({ show: false });
127 this.props.history.push('/')
128 }
129
Ted Humphrey083e5a22020-07-08 16:48:40 -0400130 renderSvg() {
131 return(
132 <SvgGenerator loopCache={this.state.fakeLoopCacheWithTemplate} clickable={false} generatedFrom={SvgGenerator.GENERATED_FROM_TEMPLATE}/>
133 )
134 }
135
drveerendra684057e2019-11-11 19:37:39 -0500136 render() {
137 return (
Ted Humphreydf68db22020-04-16 17:36:17 +0000138 <ModalStyled size="xl" show={this.state.show} onHide={this.handleClose} backdrop="static" keyboard={false}>
jingjincs3173d552020-03-04 09:11:10 +0100139 <Modal.Header closeButton>
140 </Modal.Header>
141 <Modal.Body>
142 <MaterialTable
143 title={"View Blueprint MicroService Templates"}
sebdetc0ec0fc2020-05-18 12:31:11 +0200144 data={this.state.loopTemplatesData}
sebdet3b7f6692020-02-17 06:03:31 -0800145 columns={this.state.loopTemplateColumnsDefinition}
drveerendra684057e2019-11-11 19:37:39 -0500146 icons={this.state.tableIcons}
sebdetc0ec0fc2020-05-18 12:31:11 +0200147 onRowClick={(event, rowData) => {this.getLoopTemplate(rowData.tableData.id);this.setState({selectedRow: rowData.tableData.id})}}
drveerendra684057e2019-11-11 19:37:39 -0500148 options={{
jingjincs3173d552020-03-04 09:11:10 +0100149 headerStyle:rowHeaderStyle,
150 rowStyle: rowData => ({
151 backgroundColor: (this.state.selectedRow !== -1 && this.state.selectedRow === rowData.tableData.id) ? '#EEE' : '#FFF'
152 })
153 }}
sebdetc0ec0fc2020-05-18 12:31:11 +0200154 />
Ted Humphrey083e5a22020-07-08 16:48:40 -0400155 {this.renderSvg()}
jingjincs3173d552020-03-04 09:11:10 +0100156 </Modal.Body>
157 <Modal.Footer>
158 <Button variant="secondary" onClick={this.handleClose}>Close</Button>
159 </Modal.Footer>
drveerendra684057e2019-11-11 19:37:39 -0500160 </ModalStyled>
161 );
162 }
163 }