blob: f6c0d2ede5e19a21603e1c66733b779792411e57 [file] [log] [blame]
sebdetaa486be2020-02-18 02:00:11 -08001/*-
2 * ============LICENSE_START=======================================================
3 * ONAP CLAMP
4 * ================================================================================
5 * Copyright (C) 2020 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 MaterialTable from "material-table";
26import Button from 'react-bootstrap/Button';
27import Modal from 'react-bootstrap/Modal';
28import styled from 'styled-components';
29import PolicyToscaService from '../../../api/PolicyToscaService';
30import ArrowUpward from '@material-ui/icons/ArrowUpward';
31import ChevronLeft from '@material-ui/icons/ChevronLeft';
32import ChevronRight from '@material-ui/icons/ChevronRight';
33import Clear from '@material-ui/icons/Clear';
34import FirstPage from '@material-ui/icons/FirstPage';
35import LastPage from '@material-ui/icons/LastPage';
36import Search from '@material-ui/icons/Search';
37import LoopService from '../../../api/LoopService';
xuegaofb4b25f2020-03-11 11:22:15 +010038import Tabs from 'react-bootstrap/Tabs';
39import Tab from 'react-bootstrap/Tab';
xuegaoc6561392020-04-21 13:39:50 +020040import Alert from 'react-bootstrap/Alert';
sebdetaa486be2020-02-18 02:00:11 -080041
42const ModalStyled = styled(Modal)`
43 background-color: transparent;
44`
45const TextModal = styled.textarea`
46 margin-top: 20px;
47 white-space:pre;
48 background-color: ${props => props.theme.toscaTextareaBackgroundColor};
49 text-align: justify;
50 font-size: ${props => props.theme.toscaTextareaFontSize};
51 width: 100%;
52 height: 300px;
53`
54const cellStyle = { border: '1px solid black' };
55const headerStyle = { backgroundColor: '#ddd', border: '2px solid black' };
56const rowHeaderStyle = {backgroundColor:'#ddd', fontSize: '15pt', text: 'bold', border: '1px solid black'};
57
58export default class ModifyLoopModal extends React.Component {
59
60 state = {
61 show: true,
62 loopCache: this.props.loopCache,
63 content: 'Please select Tosca model to view the details',
64 selectedRowData: {},
65 toscaPolicyModelsData: [],
xuegaofb4b25f2020-03-11 11:22:15 +010066 selectedPolicyModelsData: [],
67 key: 'add',
xuegaoc6561392020-04-21 13:39:50 +020068 showFailAlert: false,
sebdetaa486be2020-02-18 02:00:11 -080069 toscaColumns: [
70 { title: "#", field: "index", render: rowData => rowData.tableData.id + 1,
71 cellStyle: cellStyle,
72 headerStyle: headerStyle
73 },
74 { title: "Policy Model Type", field: "policyModelType",
75 cellStyle: cellStyle,
76 headerStyle: headerStyle
77 },
78 { title: "Policy Acronym", field: "policyAcronym",
79 cellStyle: cellStyle,
80 headerStyle: headerStyle
81 },
sebdetab3eab62020-04-16 12:09:24 +020082 { title: "Policy Name", field: "policyName",
83 cellStyle: cellStyle,
84 headerStyle: headerStyle
85 },
sebdetaa486be2020-02-18 02:00:11 -080086 { title: "Version", field: "version",
87 cellStyle: cellStyle,
88 headerStyle: headerStyle
89 },
90 { title: "Uploaded By", field: "updatedBy",
91 cellStyle: cellStyle,
92 headerStyle: headerStyle
93 },
94 { title: "Uploaded Date", field: "updatedDate", editable: 'never',
95 cellStyle: cellStyle,
96 headerStyle: headerStyle
97 },
sebdetab3eab62020-04-16 12:09:24 +020098 { title: "Created Date", field: "createdDate", editable: 'never',
sebdetaa486be2020-02-18 02:00:11 -080099 cellStyle: cellStyle,
100 headerStyle: headerStyle
101 }
102 ],
103 tableIcons: {
104 FirstPage: forwardRef((props, ref) => <FirstPage {...props} ref={ref} />),
105 LastPage: forwardRef((props, ref) => <LastPage {...props} ref={ref} />),
106 NextPage: forwardRef((props, ref) => <ChevronRight {...props} ref={ref} />),
107 PreviousPage: forwardRef((props, ref) => <ChevronLeft {...props} ref={ref} />),
108 ResetSearch: forwardRef((props, ref) => <Clear {...props} ref={ref} />),
109 Search: forwardRef((props, ref) => <Search {...props} ref={ref} />),
110 SortArrow: forwardRef((props, ref) => <ArrowUpward {...props} ref={ref} />)
111 }
112 };
113
114 constructor(props, context) {
115 super(props, context);
116 this.handleClose = this.handleClose.bind(this);
xuegaofb4b25f2020-03-11 11:22:15 +0100117 this.initializeToscaPolicyModelsInfo = this.initializeToscaPolicyModelsInfo.bind(this);
sebdetaa486be2020-02-18 02:00:11 -0800118 this.handleYamlContent = this.handleYamlContent.bind(this);
119 this.getToscaPolicyModelYaml = this.getToscaPolicyModelYaml.bind(this);
120 this.handleAdd = this.handleAdd.bind(this);
xuegaofb4b25f2020-03-11 11:22:15 +0100121 this.handleRemove = this.handleRemove.bind(this);
122 this.initializeToscaPolicyModelsInfo();
sebdetaa486be2020-02-18 02:00:11 -0800123 }
124
xuegaofb4b25f2020-03-11 11:22:15 +0100125 initializeToscaPolicyModelsInfo() {
126 var operationalPolicies = this.state.loopCache.getOperationalPolicies();
127 var selectedPolicyModels = [];
128 for (var policy in operationalPolicies) {
sebdetab3eab62020-04-16 12:09:24 +0200129 var newRow = operationalPolicies[policy]["policyModel"];
sebdet6e7d0482020-04-16 16:14:45 +0200130 newRow["policyName"] = operationalPolicies[policy].name;
sebdetab3eab62020-04-16 12:09:24 +0200131 selectedPolicyModels.push(newRow);
xuegaofb4b25f2020-03-11 11:22:15 +0100132 }
133
134 PolicyToscaService.getToscaPolicyModels().then(allToscaModels => {
135 this.setState({ toscaPolicyModelsData: allToscaModels,
136 selectedPolicyModelsData: selectedPolicyModels});
sebdetaa486be2020-02-18 02:00:11 -0800137 });
138 }
139
140 getToscaPolicyModelYaml(policyModelType, policyModelVersion) {
141 if (typeof policyModelType !== "undefined") {
142 PolicyToscaService.getToscaPolicyModelYaml(policyModelType, policyModelVersion).then(toscaYaml => {
143 if (toscaYaml.length !== 0) {
144 this.setState({content: toscaYaml})
145 } else {
146 this.setState({ content: 'No Tosca model Yaml available' })
147 }
148 });
149 } else {
150 this.setState({ content: 'Please select Tosca model to view the details' })
151 }
152 }
153
154 handleYamlContent(event) {
155 this.setState({ content: event.target.value });
156 }
157
158 handleClose() {
159 this.setState({ show: false });
160 this.props.history.push('/');
161 }
162
xuegaoc6561392020-04-21 13:39:50 +0200163 renderAlert() {
164 return (
165 <div>
166 <Alert variant="danger" show={this.state.showFailAlert} onClose={this.disableAlert} dismissible>
167 {this.state.showMessage}
168 </Alert>
169 </div>
170 );
171 }
172
sebdetaa486be2020-02-18 02:00:11 -0800173 handleAdd() {
xuegaoc6561392020-04-21 13:39:50 +0200174 LoopService.addOperationalPolicyType(this.state.loopCache.getLoopName(),this.state.selectedRowData.policyModelType,this.state.selectedRowData.version)
175 .then(pars => {
176 this.props.loadLoopFunction(this.state.loopCache.getLoopName());
177 this.handleClose();
178 })
179 .catch(error => {
180 this.setState({ showFailAlert: true, showMessage: "Adding failed with error: " + error.message});
181 });
xuegaofb4b25f2020-03-11 11:22:15 +0100182 }
183
184 handleRemove() {
sebdetab3eab62020-04-16 12:09:24 +0200185 LoopService.removeOperationalPolicyType(this.state.loopCache.getLoopName(),this.state.selectedRowData.policyModelType,this.state.selectedRowData.version,this.state.selectedRowData.policyName);
xuegaofb4b25f2020-03-11 11:22:15 +0100186 this.props.loadLoopFunction(this.state.loopCache.getLoopName());
xuegaoa2625fe2020-03-18 12:55:22 +0100187 this.handleClose();
sebdetaa486be2020-02-18 02:00:11 -0800188 }
189
190 render() {
191 return (
Ted Humphreydf68db22020-04-16 17:36:17 +0000192 <ModalStyled size="xl" show={this.state.show} onHide={this.handleClose} backdrop="static" keyboard={false} >
sebdetaa486be2020-02-18 02:00:11 -0800193 <Modal.Header closeButton>
xuegaofb4b25f2020-03-11 11:22:15 +0100194 <Modal.Title>Modify Loop Operational Policies</Modal.Title>
sebdetaa486be2020-02-18 02:00:11 -0800195 </Modal.Header>
xuegaofb4b25f2020-03-11 11:22:15 +0100196 <Tabs id="controlled-tab-example" activeKey={this.state.key} onSelect={key => this.setState({ key, selectedRowData: {} })}>
197 <Tab eventKey="add" title="Add Operational Policies">
198 <Modal.Body>
199 <MaterialTable
200 title={"View Tosca Policy Models"}
201 data={this.state.toscaPolicyModelsData}
202 columns={this.state.toscaColumns}
203 icons={this.state.tableIcons}
204 onRowClick={(event, rowData) => {this.getToscaPolicyModelYaml(rowData.policyModelType, rowData.version);this.setState({selectedRowData: rowData})}}
205 options={{
206 headerStyle: rowHeaderStyle,
207 rowStyle: rowData => ({
208 backgroundColor: (this.state.selectedRowData !== {} && this.state.selectedRowData.tableData !== undefined
209 && this.state.selectedRowData.tableData.id === rowData.tableData.id) ? '#EEE' : '#FFF'
xuegaoc6561392020-04-21 13:39:50 +0200210 })
xuegaofb4b25f2020-03-11 11:22:15 +0100211 }}
212 />
213 <div>
214 <TextModal value={this.state.content} onChange={this.handleYamlContent}/>
215 </div>
216 </Modal.Body>
xuegaoc6561392020-04-21 13:39:50 +0200217 {this.renderAlert()}
xuegaofb4b25f2020-03-11 11:22:15 +0100218 </Tab>
219 <Tab eventKey="remove" title="Remove Operational Policies">
220 <Modal.Body>
221 <MaterialTable
sebdetab3eab62020-04-16 12:09:24 +0200222 title={"Tosca Policy Models already added"}
xuegaofb4b25f2020-03-11 11:22:15 +0100223 data={this.state.selectedPolicyModelsData}
224 columns={this.state.toscaColumns}
225 icons={this.state.tableIcons}
226 onRowClick={(event, rowData) => {this.setState({selectedRowData: rowData})}}
227 options={{
228 headerStyle: rowHeaderStyle,
229 rowStyle: rowData => ({
230 backgroundColor: (this.state.selectedRowData !== {} && this.state.selectedRowData.tableData !== undefined
231 && this.state.selectedRowData.tableData.id === rowData.tableData.id) ? '#EEE' : '#FFF'
232 })
233 }}
234 />
235 </Modal.Body>
236 </Tab>
237 </Tabs>
sebdetaa486be2020-02-18 02:00:11 -0800238 <Modal.Footer>
239 <Button variant="secondary" type="null" onClick={this.handleClose}>Cancel</Button>
xuegaofb4b25f2020-03-11 11:22:15 +0100240 <Button variant="primary" disabled={(this.state.key === "remove")} type="submit" onClick={this.handleAdd}>Add</Button>
241 <Button variant="primary" disabled={(this.state.key === "add")} type="submit" onClick={this.handleRemove}>Remove</Button>
sebdetaa486be2020-02-18 02:00:11 -0800242 </Modal.Footer>
xuegaofb4b25f2020-03-11 11:22:15 +0100243
sebdetaa486be2020-02-18 02:00:11 -0800244 </ModalStyled>
245 );
246 }
247}