From 24fbf5ae61fe17f1abb1301b57c9ef3475ccace8 Mon Sep 17 00:00:00 2001 From: Arundathi Patil Date: Sun, 28 Jul 2019 01:10:25 +0530 Subject: Source Options- Displaying properties Refactored code to display the source properties and not the source model Issue-ID: CCSDK-707 Change-Id: I1f17b51581fcc7a601734e4d81074b36878caacf Signed-off-by: Arundathi Patil --- .../sources-template/sources-template.component.ts | 27 +++++++++++----------- 1 file changed, 14 insertions(+), 13 deletions(-) (limited to 'cds-ui/client/src/app/feature-modules') diff --git a/cds-ui/client/src/app/feature-modules/resource-definition/resource-edit/sources-template/sources-template.component.ts b/cds-ui/client/src/app/feature-modules/resource-definition/resource-edit/sources-template/sources-template.component.ts index 3c76b8506..3e8f4f8d6 100644 --- a/cds-ui/client/src/app/feature-modules/resource-definition/resource-edit/sources-template/sources-template.component.ts +++ b/cds-ui/client/src/app/feature-modules/resource-definition/resource-edit/sources-template/sources-template.component.ts @@ -87,6 +87,7 @@ export class SourcesTemplateComponent implements OnInit { this.resources.sources = Object.assign({},originalSources); }; + // to remove this method selected(sourceValue){ this.sourcesData= [];//this.sources[value]; this.apiService.getModelType(sourceValue.value) @@ -153,25 +154,25 @@ export class SourcesTemplateComponent implements OnInit { if (typeof (dataitem) == "object") { for (let key1 in dataitem) { if (key1 == 'properties') { - let newPropOnj = {} + let newPropObj = {}; + newPropObj["name"] = event.item.element.nativeElement.innerText; + newPropObj['data'] = {}; + let newSoruceObj = {}; for (let key2 in dataitem[key1]) { - console.log(dataitem[key1][key2]); - let varType = dataitem[key1][key2].type - // let property : varType = - newPropOnj[key2] = dataitem[key1][key2]; + newSoruceObj[key2] = '';; } + newPropObj['data']['properties'] = newSoruceObj; + this.sourcesOptions.forEach(sourcesOptionsitem => { + if (sourcesOptionsitem.name == item.name) { + sourcesOptionsitem.data = newPropObj['data']; + } + }); } } } }); - this.sourcesData = data; - this.sourcesOptions.forEach(sourcesOptionsitem => { - if (sourcesOptionsitem.name == item.name) { - sourcesOptionsitem.data = data; - } - }) - }) - } + }); + } }); } } -- cgit 1.2.3-korg