X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=src%2Fapp%2Finstances%2Fns-instances%2FNSInstancesComponent.ts;h=5cc55195c3189267a8ea2ea8595202bc01c9f78e;hb=0a34dfa32165036b380ec6ac493469b34007df0a;hp=41bb38432112b9b4a28e43f56ee726a06d88a502;hpb=063a3f1741d0cb20d5ee80590339fec54ab1acdd;p=osm%2FNG-UI.git diff --git a/src/app/instances/ns-instances/NSInstancesComponent.ts b/src/app/instances/ns-instances/NSInstancesComponent.ts index 41bb384..5cc5519 100644 --- a/src/app/instances/ns-instances/NSInstancesComponent.ts +++ b/src/app/instances/ns-instances/NSInstancesComponent.ts @@ -81,6 +81,9 @@ export class NSInstancesComponent implements OnInit { /** operational State failed data @public */ public operationalStateThirdStep: string = CONFIGCONSTANT.operationalStateThirdStep; + /** operational State scaling data @public */ + public operationalStateFourthStep: string = CONFIGCONSTANT.operationalStateFourthStep; + /** Config State init data @public */ public configStateFirstStep: string = CONFIGCONSTANT.configStateFirstStep; @@ -153,7 +156,8 @@ export class NSInstancesComponent implements OnInit { list: [ { value: this.operationalStateFirstStep, title: this.operationalStateFirstStep }, { value: this.operationalStateSecondStep, title: this.operationalStateSecondStep }, - { value: this.operationalStateThirdStep, title: this.operationalStateThirdStep } + { value: this.operationalStateThirdStep, title: this.operationalStateThirdStep }, + { value: this.operationalStateFourthStep, title: this.operationalStateFourthStep } ] } }, @@ -170,6 +174,10 @@ export class NSInstancesComponent implements OnInit { return ` `; + } else if (row.OperationalStatus === this.operationalStateFourthStep) { + return ` + + `; } else { return `${row.OperationalStatus}`; } @@ -230,7 +238,13 @@ export class NSInstancesComponent implements OnInit { ConfigStatus: nsdInstanceData['config-status'], DetailedStatus: nsdInstanceData['detailed-status'], memberIndex: nsdInstanceData.nsd.df, - nsConfig: nsdInstanceData.nsd['ns-configuration'] + nsConfig: nsdInstanceData.nsd['ns-configuration'], + adminDetails: nsdInstanceData._admin, + vnfID: nsdInstanceData['vnfd-id'], + nsd: nsdInstanceData.nsd, + 'nsd-id': nsdInstanceData['nsd-id'], + vcaStatus: nsdInstanceData.vcaStatus, + constituent: nsdInstanceData['constituent-vnfr-ref'] }; this.nsInstanceData.push(nsDataObj); }); @@ -241,7 +255,9 @@ export class NSInstancesComponent implements OnInit { } this.dataSource.load(this.nsInstanceData).then((data: {}): void => { this.isLoadingResults = false; - }).catch(); + }).catch((): void => { + // Catch Navigation Error + }); }, (error: ERRORDATA): void => { this.restService.handleError(error, 'get'); this.isLoadingResults = false; @@ -261,12 +277,15 @@ export class NSInstancesComponent implements OnInit { /** Instantiate NS using modalservice @public */ public instantiateNS(): void { + // eslint-disable-next-line security/detect-non-literal-fs-filename const modalRef: NgbModalRef = this.modalService.open(InstantiateNsComponent, { backdrop: 'static' }); modalRef.result.then((result: MODALCLOSERESPONSEDATA): void => { if (result) { this.generateData(); } - }).catch(); + }).catch((): void => { + // Catch Navigation Error + }); } /**