Implement adding Interface to VFC
[sdc.git] / catalog-ui / src / app / ng2 / pages / interface-definition / interface-definition.page.component.ts
1 /*
2 * ============LICENSE_START=======================================================
3 * SDC
4 * ================================================================================
5 *  Copyright (C) 2022 Nordix Foundation. All rights reserved.
6 *  ================================================================================
7 *  Licensed under the Apache License, Version 2.0 (the "License");
8 *  you may not use this file except in compliance with the License.
9 *  You may obtain a copy of the License at
10 *
11 *        http://www.apache.org/licenses/LICENSE-2.0
12 *  Unless required by applicable law or agreed to in writing, software
13 *  distributed under the License is distributed on an "AS IS" BASIS,
14 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 *  See the License for the specific language governing permissions and
16 *  limitations under the License.
17 *
18 *  SPDX-License-Identifier: Apache-2.0
19 *  ============LICENSE_END=========================================================
20 */
21 import {Component, ComponentRef, Inject, Input} from '@angular/core';
22 import {Component as IComponent} from 'app/models/components/component';
23 import {WorkflowServiceNg2} from 'app/ng2/services/workflow.service';
24
25 import {ISdcConfig, SdcConfigToken} from "app/ng2/config/sdc-config.config";
26 import {TranslateService} from "app/ng2/shared/translator/translate.service";
27 import {IModalButtonComponent, SdcUiServices} from 'onap-ui-angular';
28 import {ModalComponent} from 'app/ng2/components/ui/modal/modal.component';
29
30 import {ModalService} from 'app/ng2/services/modal.service';
31 import {
32     ButtonModel,
33     CapabilitiesGroup,
34     InputBEModel,
35     InterfaceModel,
36     ModalModel,
37     OperationModel,
38     WORKFLOW_ASSOCIATION_OPTIONS
39 } from 'app/models';
40
41 import {ComponentServiceNg2} from 'app/ng2/services/component-services/component.service';
42 import {TopologyTemplateService} from "../../services/component-services/topology-template.service";
43 import {InterfaceOperationModel} from "../../../models/interfaceOperation";
44 import {
45     InterfaceOperationHandlerComponent
46 } from "../composition/interface-operatons/operation-creator/interface-operation-handler.component";
47 import {
48     DropdownValue
49 } from "../../components/ui/form-components/dropdown/ui-element-dropdown.component";
50 import {ToscaArtifactModel} from "../../../models/toscaArtifact";
51 import {ToscaArtifactService} from "../../services/tosca-artifact.service";
52 import {
53     InterfaceOperationComponent
54 } from "../interface-operation/interface-operation.page.component";
55 import {Observable} from "rxjs/Observable";
56 import {PluginsService} from 'app/ng2/services/plugins.service';
57
58 export class UIOperationModel extends OperationModel {
59     isCollapsed: boolean = true;
60     isEllipsis: boolean;
61     MAX_LENGTH = 75;
62
63     constructor(operation: OperationModel) {
64         super(operation);
65
66         if (!operation.description) {
67             this.description = '';
68         }
69
70         if (this.description.length > this.MAX_LENGTH) {
71             this.isEllipsis = true;
72         } else {
73             this.isEllipsis = false;
74         }
75     }
76
77     getDescriptionEllipsis(): string {
78         if (this.isCollapsed && this.description.length > this.MAX_LENGTH) {
79             return this.description.substr(0, this.MAX_LENGTH - 3) + '...';
80         }
81         return this.description;
82     }
83
84     toggleCollapsed(e) {
85         e.stopPropagation();
86         this.isCollapsed = !this.isCollapsed;
87     }
88 }
89
90 // tslint:disable-next-line:max-classes-per-file
91 class ModalTranslation {
92     CREATE_TITLE: string;
93     EDIT_TITLE: string;
94     DELETE_TITLE: string;
95     CANCEL_BUTTON: string;
96     SAVE_BUTTON: string;
97     CREATE_BUTTON: string;
98     DELETE_BUTTON: string;
99     deleteText: Function;
100
101     constructor(private TranslateService: TranslateService) {
102         this.TranslateService.languageChangedObservable.subscribe(lang => {
103             this.CREATE_TITLE = this.TranslateService.translate("INTERFACE_CREATE_TITLE");
104             this.EDIT_TITLE = this.TranslateService.translate('INTERFACE_EDIT_TITLE');
105             this.DELETE_TITLE = this.TranslateService.translate("INTERFACE_DELETE_TITLE");
106             this.CANCEL_BUTTON = this.TranslateService.translate("INTERFACE_CANCEL_BUTTON");
107             this.SAVE_BUTTON = this.TranslateService.translate("INTERFACE_SAVE_BUTTON");
108             this.CREATE_BUTTON = this.TranslateService.translate("INTERFACE_CREATE_BUTTON");
109             this.DELETE_BUTTON = this.TranslateService.translate("INTERFACE_DELETE_BUTTON");
110             this.deleteText = (operationName) => this.TranslateService.translate("INTERFACE_DELETE_TEXT", {operationName});
111         });
112     }
113 }
114
115 export class UIInterfaceModel extends InterfaceModel {
116     isCollapsed: boolean = false;
117
118     constructor(interf?: any) {
119         super(interf);
120         if (this.operations) {
121             this.operations = this.operations.map((operation) => new UIOperationModel(operation));
122         }
123     }
124
125     toggleCollapse() {
126         this.isCollapsed = !this.isCollapsed;
127     }
128 }
129
130 // tslint:disable-next-line:max-classes-per-file
131 @Component({
132     selector: 'interface-definition',
133     templateUrl: './interface-definition.page.component.html',
134     styleUrls: ['interface-definition.page.component.less'],
135     providers: [ModalService, TranslateService, InterfaceOperationComponent]
136 })
137 export class InterfaceDefinitionComponent {
138
139     modalInstance: ComponentRef<ModalComponent>;
140     interfaces: UIInterfaceModel[];
141     inputs: InputBEModel[];
142
143     deploymentArtifactsFilePath: Array<DropdownValue> = [];
144
145     toscaArtifactTypes: Array<DropdownValue> = [];
146     interfaceTypesTest: Array<DropdownValue> = [];
147     interfaceTypesMap: Map<string, string[]>;
148
149     isLoading: boolean;
150     interfaceTypes: { [interfaceType: string]: string[] };
151     modalTranslation: ModalTranslation;
152     workflows: any[];
153     capabilities: CapabilitiesGroup;
154     isViewOnly: boolean;
155
156     openOperation: OperationModel;
157     enableWorkflowAssociation: boolean;
158     workflowIsOnline: boolean;
159
160     @Input() component: IComponent;
161     @Input() readonly: boolean;
162     @Input() enableMenuItems: Function;
163     @Input() disableMenuItems: Function;
164
165     constructor(
166         @Inject(SdcConfigToken) private sdcConfig: ISdcConfig,
167         @Inject("$state") private $state: ng.ui.IStateService,
168         @Inject("Notification") private notification: any,
169         private translateService: TranslateService,
170         private componentServiceNg2: ComponentServiceNg2,
171         private modalServiceNg2: ModalService,
172         private modalServiceSdcUI: SdcUiServices.ModalService,
173         private topologyTemplateService: TopologyTemplateService,
174         private toscaArtifactService: ToscaArtifactService,
175         private ComponentServiceNg2: ComponentServiceNg2,
176         private WorkflowServiceNg2: WorkflowServiceNg2,
177         private ModalServiceSdcUI: SdcUiServices.ModalService,
178         private PluginsService: PluginsService
179     ) {
180         this.modalTranslation = new ModalTranslation(translateService);
181         this.interfaceTypesMap = new Map<string, string[]>();
182     }
183
184     ngOnInit(): void {
185         this.isLoading = true;
186         this.interfaces = [];
187         this.workflowIsOnline = !_.isUndefined(this.PluginsService.getPluginByStateUrl('workflowDesigner'));
188         Observable.forkJoin(
189             this.ComponentServiceNg2.getInterfaceOperations(this.component),
190             this.ComponentServiceNg2.getComponentInputs(this.component),
191             this.ComponentServiceNg2.getInterfaceTypes(this.component),
192             this.ComponentServiceNg2.getCapabilitiesAndRequirements(this.component.componentType, this.component.uniqueId)
193         ).subscribe((response: any[]) => {
194             const callback = (workflows) => {
195                 this.isLoading = false;
196                 this.initInterfaces(response[0].interfaces);
197                 this.sortInterfaces();
198                 this.inputs = response[1].inputs;
199                 this.interfaceTypes = response[2];
200                 this.workflows = (workflows.items) ? workflows.items : workflows;
201                 this.capabilities = response[3].capabilities;
202             };
203             if (this.enableWorkflowAssociation && this.workflowIsOnline) {
204                 this.WorkflowServiceNg2.getWorkflows().subscribe(
205                     callback,
206                     (err) => {
207                         this.workflowIsOnline = false;
208                         callback([]);
209                     }
210                 );
211             } else {
212                 callback([]);
213             }
214         });
215     }
216
217     initInterfaces(interfaces: InterfaceModel[]): void {
218         if (interfaces) {
219             this.interfaces = interfaces.map((interf) => new UIInterfaceModel(interf));
220         }
221     }
222
223     private cancelAndCloseModal = () => {
224         return this.modalServiceNg2.closeCurrentModal();
225     }
226
227     private disableSaveButton = (): boolean => {
228         return this.isViewOnly ||
229             (this.isEnableAddArtifactImplementation()
230                 && (!this.modalInstance.instance.dynamicContent.toscaArtifactTypeSelected ||
231                     !this.modalInstance.instance.dynamicContent.artifactName)
232             );
233     }
234
235     onSelectInterfaceOperation(interfaceModel: UIInterfaceModel, operation: InterfaceOperationModel) {
236         const isEdit = operation !== undefined;
237         const cancelButton: ButtonModel = new ButtonModel(this.modalTranslation.CANCEL_BUTTON, 'outline white', this.cancelAndCloseModal);
238         const saveButton: ButtonModel = new ButtonModel(this.modalTranslation.SAVE_BUTTON, 'blue',
239             () => isEdit ? this.updateOperation() : this.createOperationCallback(),
240             this.disableSaveButton
241         );
242         const interfaceDataModal: ModalModel =
243             new ModalModel('l', this.modalTranslation.EDIT_TITLE, '', [saveButton, cancelButton], 'custom');
244         this.modalInstance = this.modalServiceNg2.createCustomModal(interfaceDataModal);
245
246         this.modalServiceNg2.addDynamicContentToModal(
247             this.modalInstance,
248             InterfaceOperationHandlerComponent,
249             {
250                 deploymentArtifactsFilePath: this.deploymentArtifactsFilePath,
251                 toscaArtifactTypes: this.toscaArtifactTypes,
252                 selectedInterface: interfaceModel ? interfaceModel : new UIInterfaceModel(),
253                 selectedInterfaceOperation: operation ? operation : new InterfaceOperationModel(),
254                 validityChangedCallback: this.disableSaveButton,
255                 isViewOnly: this.isViewOnly,
256                 isEdit: isEdit,
257                 interfaceTypesMap: this.interfaceTypesMap,
258             }
259         );
260         this.modalInstance.instance.open();
261     }
262
263     private updateOperation = (): void => {
264         let operationToUpdate = this.modalInstance.instance.dynamicContent.instance.operationToUpdate;
265         this.componentServiceNg2.updateComponentInterfaceOperation(this.component.uniqueId, operationToUpdate)
266         .subscribe((newOperation: InterfaceOperationModel) => {
267             let oldOpIndex;
268             let oldInterf;
269             this.interfaces.forEach(interf => {
270                 interf.operations.forEach(op => {
271                     if (op.uniqueId === newOperation.uniqueId) {
272                         oldInterf = interf;
273                         oldOpIndex = interf.operations.findIndex((el) => el.uniqueId === op.uniqueId);
274                     }
275                 });
276             });
277             newOperation = this.handleEnableAddArtifactImplementation(newOperation);
278             oldInterf.operations.splice(oldOpIndex, 1);
279             oldInterf.operations.push(new InterfaceOperationModel(newOperation));
280         });
281         this.modalServiceNg2.closeCurrentModal();
282     }
283
284     private createOperationCallback(): void {
285         const operationToUpdate = this.modalInstance.instance.dynamicContent.instance.operationToUpdate;
286         console.log('createOperationCallback', operationToUpdate);
287         console.log('this.component', this.component);
288         this.componentServiceNg2.createComponentInterfaceOperation(this.component.uniqueId, this.component.getTypeUrl(), operationToUpdate)
289         .subscribe((newOperation: InterfaceOperationModel) => {
290             const foundInterface = this.interfaces.find(value => value.type === newOperation.interfaceType);
291             if (foundInterface) {
292                 foundInterface.operations.push(new UIOperationModel(new OperationModel(newOperation)));
293             } else {
294                 const uiInterfaceModel = new UIInterfaceModel();
295                 uiInterfaceModel.type = newOperation.interfaceType;
296                 uiInterfaceModel.uniqueId = newOperation.interfaceType;
297                 uiInterfaceModel.operations = [];
298                 uiInterfaceModel.operations.push(new UIOperationModel(new OperationModel(newOperation)));
299                 this.interfaces.push(uiInterfaceModel);
300             }
301         });
302         this.modalServiceNg2.closeCurrentModal();
303     }
304
305     private handleEnableAddArtifactImplementation = (newOperation: InterfaceOperationModel): InterfaceOperationModel => {
306         if (!this.isEnableAddArtifactImplementation()) {
307             newOperation.implementation.artifactType = null;
308             newOperation.implementation.artifactVersion = null;
309         }
310         return newOperation;
311     }
312
313     private isEnableAddArtifactImplementation = (): boolean => {
314         return this.modalInstance.instance.dynamicContent.enableAddArtifactImplementation;
315     }
316
317     private initInterfaceDefinition() {
318         this.isLoading = true;
319         this.interfaces = [];
320         this.topologyTemplateService.getComponentInterfaceOperations(this.component.componentType, this.component.uniqueId)
321         .subscribe((response) => {
322             if (response.interfaces) {
323                 this.interfaces = response.interfaces.map((interfaceModel) => new UIInterfaceModel(interfaceModel));
324             }
325             this.isLoading = false;
326         });
327     }
328
329     private loadToscaArtifacts() {
330         this.toscaArtifactService.getToscaArtifacts(this.component.model).subscribe(response => {
331             if (response) {
332                 let toscaArtifactsFound = <ToscaArtifactModel[]>_.values(response);
333                 toscaArtifactsFound.forEach(value => this.toscaArtifactTypes.push(new DropdownValue(value, value.type)));
334             }
335         }, error => {
336             this.notification.error({
337                 message: 'Failed to Load Tosca Artifacts:' + error,
338                 title: 'Failure'
339             });
340         });
341     }
342
343     private loadInterfaceTypes() {
344         this.componentServiceNg2.getInterfaceTypes(this.component).subscribe(response => {
345             if (response) {
346                 console.info("loadInterfaceTypes ", response);
347                 for (const interfaceType in response) {
348                     this.interfaceTypesMap.set(interfaceType, response[interfaceType]);
349                     this.interfaceTypesTest.push(new DropdownValue(interfaceType, interfaceType));
350                 }
351             }
352         }, error => {
353             this.notification.error({
354                 message: 'Failed to Load Interface Types:' + error,
355                 title: 'Failure'
356             });
357         });
358     }
359
360     collapseAll(value: boolean = true): void {
361         this.interfaces.forEach(interfaceData => {
362             interfaceData.isCollapsed = value;
363         });
364     }
365
366     isAllCollapsed(): boolean {
367         return this.interfaces.every((interfaceData) => interfaceData.isCollapsed);
368     }
369
370     isAllExpanded(): boolean {
371         return this.interfaces.every((interfaceData) => !interfaceData.isCollapsed);
372     }
373
374     isInterfaceListEmpty(): boolean {
375         return this.interfaces.length === 0;
376     }
377
378     isOperationListEmpty(): boolean {
379         return this.interfaces.filter((interfaceData) => interfaceData.operations && interfaceData.operations.length > 0).length > 0;
380     }
381
382     onRemoveOperation = (event: Event, operation: OperationModel): void => {
383         event.stopPropagation();
384
385         const deleteButton: IModalButtonComponent = {
386             id: 'deleteButton',
387             text: this.modalTranslation.DELETE_BUTTON,
388             type: 'primary',
389             size: 'small',
390             closeModal: true,
391             callback: () => {
392                 this.ComponentServiceNg2
393                 .deleteInterfaceOperation(this.component, operation)
394                 .subscribe(() => {
395                     const curInterf = this.interfaces.find((interf) => interf.type === operation.interfaceType);
396                     const index = curInterf.operations.findIndex((el) => el.uniqueId === operation.uniqueId);
397                     curInterf.operations.splice(index, 1);
398                     if (!curInterf.operations.length) {
399                         const interfIndex = this.interfaces.findIndex((interf) => interf.type === operation.interfaceType);
400                         this.interfaces.splice(interfIndex, 1);
401                     }
402                 });
403             }
404         };
405
406         const cancelButton: IModalButtonComponent = {
407             id: 'cancelButton',
408             text: this.modalTranslation.CANCEL_BUTTON,
409             type: 'secondary',
410             size: 'small',
411             closeModal: true,
412             callback: () => {
413                 this.openOperation = null;
414             },
415         };
416
417         this.ModalServiceSdcUI.openWarningModal(
418             this.modalTranslation.DELETE_TITLE,
419             this.modalTranslation.deleteText(operation.name),
420             'deleteOperationModal',
421             [deleteButton, cancelButton],
422         );
423     }
424
425     private createOperation = (operation: OperationModel): void => {
426         this.ComponentServiceNg2.createInterfaceOperation(this.component, operation).subscribe((response: OperationModel) => {
427             this.openOperation = null;
428
429             let curInterf = this.interfaces.find((interf) => interf.type === operation.interfaceType);
430
431             if (!curInterf) {
432                 curInterf = new UIInterfaceModel({
433                     type: response.interfaceType,
434                     uniqueId: response.uniqueId,
435                     operations: []
436                 });
437                 this.interfaces.push(curInterf);
438             }
439
440             const newOpModel = new UIOperationModel(response);
441             curInterf.operations.push(newOpModel);
442             this.sortInterfaces();
443
444             if (operation.workflowAssociationType === WORKFLOW_ASSOCIATION_OPTIONS.EXTERNAL && operation.artifactData) {
445                 this.ComponentServiceNg2.uploadInterfaceOperationArtifact(this.component, newOpModel, operation).subscribe();
446             } else if (response.workflowId && operation.workflowAssociationType === WORKFLOW_ASSOCIATION_OPTIONS.EXISTING) {
447                 this.WorkflowServiceNg2.associateWorkflowArtifact(this.component, response).subscribe();
448             } else if (operation.workflowAssociationType === WORKFLOW_ASSOCIATION_OPTIONS.NEW) {
449                 this.$state.go('workspace.plugins', {path: 'workflowDesigner'});
450             }
451         });
452     }
453
454     private enableOrDisableSaveButton = (shouldEnable: boolean): void => {
455         const saveButton = this.modalInstance.instance.dynamicContent.getButtonById('saveButton');
456         saveButton.disabled = !shouldEnable;
457     }
458
459     private sortInterfaces(): void {
460         this.interfaces = this.interfaces.filter((interf) => interf.operations && interf.operations.length > 0); // remove empty interfaces
461         this.interfaces.sort((a, b) => a.type.localeCompare(b.type)); // sort interfaces alphabetically
462         this.interfaces.forEach((interf) => {
463             interf.operations.sort((a, b) => a.name.localeCompare(b.name)); // sort operations alphabetically
464         });
465     }
466
467 }