blob: 7cf02f71149a19cfdc11326bec70410aad0b5d9f [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";
37
38const ModalStyled = styled(Modal)`
39 background-color: transparent;
40`
Ted Humphreydf68db22020-04-16 17:36:17 +000041const LoopViewSvgDivStyled = styled.svg`
42 overflow-x: scroll;
jingjincs3173d552020-03-04 09:11:10 +010043 background-color: ${props => (props.theme.loopViewerBackgroundColor)};
44 border-color: ${props => (props.theme.loopViewerHeaderColor)};
Ted Humphreydf68db22020-04-16 17:36:17 +000045 margin-top: 3em;
46 margin-left: 2em;
jingjincs3173d552020-03-04 09:11:10 +010047 margin-right:auto;
48 text-align: center;
Ted Humphreydf68db22020-04-16 17:36:17 +000049 height: 100%;
50 width: 100%;
51 display: flex;
52 flex-direction: row;
53 align-items: center;
54
drveerendra684057e2019-11-11 19:37:39 -050055`
jingjincs3173d552020-03-04 09:11:10 +010056const SvgContainerDivStyled = styled.div`
Ted Humphreydf68db22020-04-16 17:36:17 +000057 display: flex;
58 align-items: center;
jingjincs3173d552020-03-04 09:11:10 +010059 border: 1px solid;
60`
61
drveerendra684057e2019-11-11 19:37:39 -050062const cellStyle = { border: '1px solid black' };
63const headerStyle = { backgroundColor: '#ddd', border: '2px solid black' };
64const rowHeaderStyle = {backgroundColor:'#ddd', fontSize: '15pt', text: 'bold', border: '1px solid black'};
65
sebdet3b7f6692020-02-17 06:03:31 -080066export default class ViewLoopTemplatesModal extends React.Component {
drveerendra684057e2019-11-11 19:37:39 -050067 state = {
jingjincs3173d552020-03-04 09:11:10 +010068 show: true,
sebdet3b7f6692020-02-17 06:03:31 -080069 content: 'Please select a loop template to display it',
drveerendra684057e2019-11-11 19:37:39 -050070 selectedRow: -1,
sebdet3b7f6692020-02-17 06:03:31 -080071 loopTemplateData: [],
72 loopTemplateColumnsDefinition: [
drveerendra684057e2019-11-11 19:37:39 -050073 { title: "#", field: "index", render: rowData => rowData.tableData.id + 1,
74 cellStyle: cellStyle,
75 headerStyle: headerStyle
76 },
sebdet3b7f6692020-02-17 06:03:31 -080077 { title: "Template Name", field: "name",
drveerendra684057e2019-11-11 19:37:39 -050078 cellStyle: cellStyle,
79 headerStyle: headerStyle
80 },
sebdet3b7f6692020-02-17 06:03:31 -080081 { title: "Service Model Name", field: "modelService.serviceDetails.name",
drveerendra684057e2019-11-11 19:37:39 -050082 cellStyle: cellStyle,
83 headerStyle: headerStyle
84 },
sebdet3b7f6692020-02-17 06:03:31 -080085 { title: "Loop Type Allowed", field: "allowedLoopType",
drveerendra684057e2019-11-11 19:37:39 -050086 cellStyle: cellStyle,
87 headerStyle: headerStyle
88 },
sebdet3b7f6692020-02-17 06:03:31 -080089 { title: "# Instances Allowed", field: "maximumInstancesAllowed",
drveerendra684057e2019-11-11 19:37:39 -050090 cellStyle: cellStyle,
91 headerStyle: headerStyle
92 },
sebdet3b7f6692020-02-17 06:03:31 -080093 { title: "Modified Date", field: "updatedDate", editable: 'never',
drveerendra684057e2019-11-11 19:37:39 -050094 cellStyle: cellStyle,
95 headerStyle: headerStyle
96 }
97 ],
98 tableIcons: {
99 FirstPage: forwardRef((props, ref) => <FirstPage {...props} ref={ref} />),
100 LastPage: forwardRef((props, ref) => <LastPage {...props} ref={ref} />),
101 NextPage: forwardRef((props, ref) => <ChevronRight {...props} ref={ref} />),
102 PreviousPage: forwardRef((props, ref) => <ChevronLeft {...props} ref={ref} />),
103 ResetSearch: forwardRef((props, ref) => <Clear {...props} ref={ref} />),
104 Search: forwardRef((props, ref) => <Search {...props} ref={ref} />),
105 SortArrow: forwardRef((props, ref) => <ArrowUpward {...props} ref={ref} />)
106 }
107 };
108
109 constructor(props, context) {
110 super(props, context);
111 this.handleClose = this.handleClose.bind(this);
jingjincs3173d552020-03-04 09:11:10 +0100112 this.getBlueprintMicroServiceTemplate = this.getBlueprintMicroServiceTemplate.bind(this);
drveerendra684057e2019-11-11 19:37:39 -0500113 this.getBlueprintMicroServiceTemplates();
114 }
115
116 getBlueprintMicroServiceTemplates() {
sebdetaa486be2020-02-18 02:00:11 -0800117 TemplateService.getBlueprintMicroServiceTemplates().then(loopTemplateData => {
sebdet3b7f6692020-02-17 06:03:31 -0800118 this.setState({ loopTemplateData: loopTemplateData })
drveerendra684057e2019-11-11 19:37:39 -0500119 });
120 }
121
jingjincs3173d552020-03-04 09:11:10 +0100122 getBlueprintMicroServiceTemplate(templateName) {
123 if (typeof templateName !== "undefined") {
sebdet84242152020-04-02 15:31:34 +0200124 TemplateService.getBlueprintMicroServiceTemplateSvg(templateName).then(svgXml => {
jingjincs3173d552020-03-04 09:11:10 +0100125 if (svgXml.length !== 0) {
126 this.setState({ content: svgXml })
127 } else {
128 this.setState({ content: 'Please select a loop template to view the details' })
129
130 }
131 });
132 } else {
133 this.setState({ content: 'Please select a loop template to view the details' })
134 }
135 }
drveerendra684057e2019-11-11 19:37:39 -0500136
137 handleClose() {
138 this.setState({ show: false });
139 this.props.history.push('/')
140 }
141
142 render() {
143 return (
Ted Humphreydf68db22020-04-16 17:36:17 +0000144 <ModalStyled size="xl" show={this.state.show} onHide={this.handleClose} backdrop="static" keyboard={false}>
jingjincs3173d552020-03-04 09:11:10 +0100145 <Modal.Header closeButton>
146 </Modal.Header>
147 <Modal.Body>
148 <MaterialTable
149 title={"View Blueprint MicroService Templates"}
150 data={this.state.loopTemplateData}
sebdet3b7f6692020-02-17 06:03:31 -0800151 columns={this.state.loopTemplateColumnsDefinition}
drveerendra684057e2019-11-11 19:37:39 -0500152 icons={this.state.tableIcons}
jingjincs3173d552020-03-04 09:11:10 +0100153 onRowClick={(event, rowData) => {this.getBlueprintMicroServiceTemplate(rowData.name);this.setState({selectedRow: rowData.tableData.id})}}
drveerendra684057e2019-11-11 19:37:39 -0500154 options={{
jingjincs3173d552020-03-04 09:11:10 +0100155 headerStyle:rowHeaderStyle,
156 rowStyle: rowData => ({
157 backgroundColor: (this.state.selectedRow !== -1 && this.state.selectedRow === rowData.tableData.id) ? '#EEE' : '#FFF'
158 })
159 }}
160 />
161 <SvgContainerDivStyled>
162 <LoopViewSvgDivStyled dangerouslySetInnerHTML={{ __html: this.state.content }} value={this.state.content} >
163 </LoopViewSvgDivStyled>
164 </SvgContainerDivStyled>
165 </Modal.Body>
166 <Modal.Footer>
167 <Button variant="secondary" onClick={this.handleClose}>Close</Button>
168 </Modal.Footer>
drveerendra684057e2019-11-11 19:37:39 -0500169 </ModalStyled>
170 );
171 }
172 }