summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/services/services-list/services-list.component.ts
diff options
context:
space:
mode:
authorBharath Thiruveedula <bharath.thiruveedula@verizon.com>2019-03-21 18:20:46 +0530
committerBharath Thiruveedula <bharath.thiruveedula@verizon.com>2019-03-25 14:15:13 +0530
commited711ae3ce17c0d19f2ab7e999d4966a96dde516 (patch)
tree1120683fc621a08804b9a92698e1c1fb8794dbaa /usecaseui-portal/src/app/services/services-list/services-list.component.ts
parent8ca667af29ce93f5b801ccfafbf6d14e55640300 (diff)
Add dropdown to select NFVO
Change-Id: I2a38e4f148f19340d1e799fe6d989efca6a418c2 Issue-ID: USECASEUI-241 Depends-on: I3f3c638cd01921e0aeaa8d55423d89f83d0f7337 Signed-off-by: Bharath Thiruveedula <bharath.thiruveedula@verizon.com> Co-Authored-By: Sirisha Gopigiri <sirisha.gopigiri@verizon.com>
Diffstat (limited to 'usecaseui-portal/src/app/services/services-list/services-list.component.ts')
-rw-r--r--usecaseui-portal/src/app/services/services-list/services-list.component.ts21
1 files changed, 20 insertions, 1 deletions
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);
}