Merge "Resource dictionary- displaying exsisting sources"
authorBrinda Santh Muthuramalingam <brindasanth@in.ibm.com>
Tue, 23 Jul 2019 20:02:04 +0000 (20:02 +0000)
committerGerrit Code Review <gerrit@onap.org>
Tue, 23 Jul 2019 20:02:04 +0000 (20:02 +0000)
cds-ui/client/src/app/common/core/store/models/resources.model.ts
cds-ui/client/src/app/feature-modules/resource-definition/resource-edit/resource-edit.component.ts
cds-ui/client/src/app/feature-modules/resource-definition/resource-edit/sources-template/sources-template.component.ts

index 019c268..e89094b 100644 (file)
@@ -27,4 +27,5 @@ export interface IResources {
     updated_bt:string;
     property: IPropertyData;
     sources: ISourcesData;
+    definition?: any;
 }
\ No newline at end of file
index 2da1287..aa8a106 100644 (file)
@@ -47,6 +47,7 @@ export class ResourceEditComponent implements OnInit {
     viewText: string = "Open in Editor Mode";
     @ViewChild(JsonEditorComponent) editor: JsonEditorComponent;
     options = new JsonEditorOptions();
+    sourcesList = [];
   
   constructor(private store: Store<IAppState>, private resourceEditService: ResourceEditService, private alertService: NotificationHandlerService) {
        this.rdState = this.store.select('resources');
@@ -60,6 +61,9 @@ export class ResourceEditComponent implements OnInit {
       resourcesdata => {
         var resourcesState: IResourcesState = { resources: resourcesdata.resources, isLoadSuccess: resourcesdata.isLoadSuccess, isSaveSuccess: resourcesdata.isSaveSuccess, isUpdateSuccess: resourcesdata.isUpdateSuccess };
           this.resources=resourcesState.resources;
+          if(resourcesdata.resources.definition && resourcesdata.resources.definition.sources) {
+            this.sourcesList = resourcesdata.resources.definition.sources;
+         }
     })     
   }
 
index c4ad83d..42f990a 100644 (file)
@@ -20,7 +20,7 @@
 * ============LICENSE_END=========================================================
 */
 
-import { Component, OnInit, ViewChild, EventEmitter, Output } from '@angular/core';
+import { Component, OnInit, ViewChild, EventEmitter, Output, Input } from '@angular/core';
 import { CdkDragDrop, moveItemInArray, transferArrayItem } from '@angular/cdk/drag-drop';
 import { IResources } from 'src/app/common/core/store/models/resources.model';
 import { IResourcesState } from 'src/app/common/core/store/models/resourcesState.model';
@@ -62,9 +62,17 @@ export class SourcesTemplateComponent implements OnInit {
       resourcesdata => {
         var resourcesState: IResourcesState = { resources: resourcesdata.resources, isLoadSuccess: resourcesdata.isLoadSuccess, isSaveSuccess: resourcesdata.isSaveSuccess, isUpdateSuccess: resourcesdata.isUpdateSuccess };
         this.resources=resourcesState.resources;
-        this.sources = resourcesState.resources.sources;
+      //   this.sources = resourcesState.resources.sources;
+         if(resourcesState.resources.definition && resourcesState.resources.definition.sources) {
+         this.sources = resourcesState.resources.definition.sources;
+         }
         for (let key in this.sources) {
-            this.sourcesOptions.push(key);  
+            // this.sourcesOptions.push(key);
+            let source = {
+               name : key,
+               data: this.sources[key]
+            }
+             this.sourcesOptions.push(source);    
         }
     })
  }
@@ -136,5 +144,19 @@ export class SourcesTemplateComponent implements OnInit {
                         event.previousIndex,
                         event.currentIndex);
     }
-  }    
+  }
+
+  getResources() {
+   this.apiService.getSources()
+   .subscribe(data=>{
+      console.log(data);
+      for (let key in data[0]) {
+         let sourceObj = { name: key, value: data[0][key] }
+         this.option.push(sourceObj);  
+     }
+      // this.sourcesOptions = data;
+   }, error=>{
+      console.log(error);
+   })
+  }
 }