7368dd6986897c3750ed0a4f495a48b5d20be5e1
[vid.git] / vid-webpack-master / src / app / shared / components / genericFormPopup / generic-form-popup.component.ts
1 import {Component, OnDestroy, OnInit} from '@angular/core';
2 import {FormPopupDetails} from "../../models/formControlModels/formPopupDetails.model";
3 import {DialogComponent, DialogService} from "ng2-bootstrap-modal";
4 import {FormGroup} from "@angular/forms";
5 import {IframeService} from "../../utils/iframe.service";
6 import {ITreeNode} from "angular-tree-component/dist/defs/api";
7 import * as _ from "lodash";
8 import {NgRedux} from "@angular-redux/store";
9 import {AppState} from "../../store/reducers";
10 import {ServicePopupService} from "./genericFormServices/service/service.popup.service";
11 import {ActivatedRoute, Router} from "@angular/router";
12 import {AaiService} from "../../services/aaiService/aai.service";
13 import {GenericFormPopupService} from "./generic-form-popup.service";
14 import {FormControlModel} from "../../models/formControlModels/formControl.model";
15 import {FormGeneralErrorsService} from "../formGeneralErrors/formGeneralErrors.service";
16 import {FeatureFlagsService, Features} from "../../services/featureFlag/feature-flags.service";
17 import {InstantiationTemplatesModalComponent} from "./instantiationTemplatesModal/instantiation.templates.modal.component";
18 import {updateCurrentModalModeAction} from "../../storeUtil/utils/global/global.actions";
19
20
21 export interface PopupModel {
22   type: PopupType;
23   uuidData: UUIDData;
24   node: ITreeNode;
25   isUpdateMode: boolean;
26 }
27
28 export enum PopupType {
29   SERVICE = 'service',
30   VNF = 'vnf',
31   NETWORK = 'network',
32   VF_MODULE = 'vf_module',
33   VF_MODULE_UPGRADE = 'vf_module_upgrade',
34   VNF_GROUP = 'vnf_group'
35 }
36
37
38 @Component({
39   selector: 'generic-form-popup',
40   templateUrl: 'generic-form-popup.component.html',
41   styleUrls: ['generic-form-popup.component.scss']
42 })
43
44 export class GenericFormPopupComponent extends DialogComponent<PopupModel, boolean> implements OnInit, OnDestroy {
45   formPopupDetails: FormPopupDetails = null;
46   dynamicForm: FormGroup;
47   type: PopupType;
48   uuidData: UUIDData;
49   showTemplateBtn: boolean = false;
50   isUpdateMode: boolean;
51   node: ITreeNode = null;
52   hasGeneralApiError: boolean = false;
53   parentElementClassName = 'content';
54   errorMsg = 'Page contains errors. Please see details next to the relevant fields.';
55   serviceModelId : string;
56   servicesQty = 1;
57   quantityOptions = _.range(1, 51)
58
59   constructor(dialogService: DialogService,
60               private _iframeService: IframeService,
61               private _store: NgRedux<AppState>,
62               private _servicePopupService: ServicePopupService,
63               private _activatedRoute: ActivatedRoute,
64               private _aaiService: AaiService,
65               private _dialogService: DialogService,
66               private _route: ActivatedRoute,
67               private _router : Router,
68               private _genericFormPopupService: GenericFormPopupService) {
69     super(dialogService);
70   }
71
72   closeDialog(that): void {
73     this._iframeService.closeIframe(this.dialogService, this);
74   }
75
76   shouldShowNotification(): boolean {
77     return this.formPopupDetails && this.formPopupDetails.UUIDData['bulkSize'] > 1
78   }
79
80   clearModalIsUpdateMode() : void {
81     this._store.dispatch(updateCurrentModalModeAction(null));
82   }
83
84   ngOnInit(): void {
85     this._store.dispatch(updateCurrentModalModeAction(this.isUpdateMode));
86     this._route
87       .queryParams
88       .subscribe(params => {
89         this.serviceModelId = params['serviceModelId'];
90         if (this.serviceModelId && params['isCreate'] == "true") {
91           this.onInitForCreateNewServicePopup(params['isInstantiationTemplateExists']);
92         }
93       });
94
95     FormGeneralErrorsService.checkForErrorTrigger.subscribe(() => {
96       this.hasSomeError(this.formPopupDetails, this.dynamicForm);
97     });
98
99     if (!_.isNil(this.uuidData)) {
100       this.uuidData.popupService.closeDialogEvent.subscribe((that) => {
101         this.closeDialog(that);
102       });
103
104       this.uuidData['isMacro'] = this._store.getState().service.serviceHierarchy[this.uuidData['serviceId']].service.vidNotions.instantiationType === 'Macro';
105       this.formPopupDetails = this._genericFormPopupService.getGenericFormDetails(this.uuidData, this.node, this.isUpdateMode);
106     }
107   }
108
109   private onInitForCreateNewServicePopup(isInstantiationTemplateExists : boolean) {
110     this._genericFormPopupService.initReduxOnCreateNewService().then((serviceModelId: string) => {
111       this.uuidData = <any>{
112         bulkSize: 1,
113         isMacro: this._store.getState().service.serviceHierarchy[serviceModelId].service.vidNotions.instantiationType === 'Macro',
114         type: PopupType.SERVICE,
115         serviceId: serviceModelId,
116         popupService: this._servicePopupService,
117       };
118
119       this.showTemplateBtn = this._genericFormPopupService.shouldShowTemplateBtn(isInstantiationTemplateExists);
120
121       this.uuidData.popupService.closeDialogEvent.subscribe((that) => {
122         this.closeDialog(that);
123       });
124
125       this.formPopupDetails = this.uuidData.popupService.getGenericFormPopupDetails(
126         this.uuidData['serviceId'],
127         null,
128         null,
129         this.node,
130         this.uuidData,
131         false
132       );
133     });
134   }
135
136   hasSomeError(formPopupDetails: FormPopupDetails, form: FormGroup): boolean {
137     if (_.isNil(formPopupDetails)) return false;
138     else {
139       for (let controlName in form.controls) {
140         if (form.controls[controlName].errors) {
141           let error: string[] = Object.keys(form.controls[controlName].errors);
142           if (error.length === 1 && error[0] === 'required') {
143             continue;
144           } else if (Object.keys(form.controls[controlName].errors).length > 0) {
145             return true;
146           }
147         }
148       }
149     }
150
151     return formPopupDetails.formControlList.filter((item: FormControlModel) => item.type === 'DROPDOWN' && item['hasEmptyOptions'] && item.isRequired()).length > 0
152   }
153
154
155   openTemplateModal = (): void => {
156     this._router.navigate(['/instantiationTemplatesPopup'], { queryParams: { serviceModelId: this.serviceModelId}, queryParamsHandling: 'merge' });
157   }
158
159 }
160
161
162 export class UUIDData extends Object {
163   type: string;
164   popupService: any;
165 }
166