From ed711ae3ce17c0d19f2ab7e999d4966a96dde516 Mon Sep 17 00:00:00 2001 From: Bharath Thiruveedula Date: Thu, 21 Mar 2019 18:20:46 +0530 Subject: Add dropdown to select NFVO Change-Id: I2a38e4f148f19340d1e799fe6d989efca6a418c2 Issue-ID: USECASEUI-241 Depends-on: I3f3c638cd01921e0aeaa8d55423d89f83d0f7337 Signed-off-by: Bharath Thiruveedula Co-Authored-By: Sirisha Gopigiri --- .../services-list/services-list.component.html | 14 ++++++++++++++ .../services-list/services-list.component.ts | 21 ++++++++++++++++++++- 2 files changed, 34 insertions(+), 1 deletion(-) (limited to 'usecaseui-portal/src/app/services/services-list') diff --git a/usecaseui-portal/src/app/services/services-list/services-list.component.html b/usecaseui-portal/src/app/services/services-list/services-list.component.html index 57e74464..4a1a44d3 100644 --- a/usecaseui-portal/src/app/services/services-list/services-list.component.html +++ b/usecaseui-portal/src/app/services/services-list/services-list.component.html @@ -77,6 +77,14 @@ +
+
+ Orchestrator: + + + +
+
TEMPLATE: @@ -85,6 +93,12 @@
+
+
+ + +
+
diff --git a/usecaseui-portal/src/app/services/services-list/services-list.component.ts b/usecaseui-portal/src/app/services/services-list/services-list.component.ts index 4263c20e..0b550caa 100644 --- a/usecaseui-portal/src/app/services/services-list/services-list.component.ts +++ b/usecaseui-portal/src/app/services/services-list/services-list.component.ts @@ -34,8 +34,11 @@ export class ServicesListComponent implements OnInit { this.inputNamests(); } // customer servicetype + isSol005Interface = false; customerList = []; + orchestratorList = []; customerSelected = {name:null,id:null}; + orchestratorSelected = {name:null,id:null}; serviceTypeList = []; serviceTypeSelected = {name:null}; listSortMasters=JSON.parse(sessionStorage.getItem('listSortMasters')); @@ -74,6 +77,18 @@ export class ServicesListComponent implements OnInit { }) } + getallOrchestrators(){ + this.myhttp.getAllOrchestrators() + .subscribe((data)=>{ + this.orchestratorList = data.map((item)=>{return {name:item["name"],id:item["name"]}}); + if(this.orchestratorList.length==0){ + console.log("orchestratorList.length == 0",this.orchestratorList); + return false; + } + this.orchestratorSelected = this.orchestratorList[0]; + }) + } + choseCustomer(item){ this.customerSelected = item; this.myhttp.getServiceTypes(this.customerSelected) @@ -88,6 +103,7 @@ export class ServicesListComponent implements OnInit { // console.log(this.listServiceTypes); }) } + choseServiceType(item){ this.serviceTypeSelected = item; this.getTableData(); @@ -98,11 +114,13 @@ export class ServicesListComponent implements OnInit { isVisible = false; createModal(): void { this.isVisible = true; + this.getallOrchestrators(); this.getAlltemplates(); } // templateTypeSelected = "SOTN"; choseTemplateType(){ + this.getallOrchestrators(); this.getAlltemplates(); } // @@ -153,7 +171,7 @@ export class ServicesListComponent implements OnInit { this.createshow = true; this.listDisplay = true; }else if(this.templateTypeSelected=="E2E Service"||this.templateTypeSelected=="Network Service"){ - this.createData = {commonParams:{customer:this.customerSelected, serviceType:this.serviceTypeSelected, templateType:this.templateTypeSelected},template:this.template4}; + this.createData = {commonParams:{customer:this.customerSelected, serviceType:this.serviceTypeSelected, templateType:this.templateTypeSelected},template:this.template4, orchestrator:this.orchestratorSelected, isSol005Interface:this.isSol005Interface}; this.createshow2 = true; this.listDisplay = true; } @@ -440,6 +458,7 @@ export class ServicesListComponent implements OnInit { this.detailshow2 = true; } this.listDisplay = true; + this.detailshow = true; this.detailData = service; console.log(service); } -- cgit 1.2.3-korg