From 7004cffc6b82c448abe62b1642b91f2e45ec2e0b Mon Sep 17 00:00:00 2001 From: Ahmedeldeeb50 Date: Sat, 24 Oct 2020 19:30:57 +0200 Subject: save resource-resolution component to the package Issue-ID: CCSDK-2900 Signed-off-by: Ahmedeldeeb50 Change-Id: I7c1e88bfd8b367e8a7e598353416068ed017aba2 --- .../functions-attribute.component.ts | 23 +++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) (limited to 'cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/functions-attribute') diff --git a/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/functions-attribute/functions-attribute.component.ts b/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/functions-attribute/functions-attribute.component.ts index 624f9c7a8..20305e853 100644 --- a/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/functions-attribute/functions-attribute.component.ts +++ b/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/functions-attribute/functions-attribute.component.ts @@ -75,6 +75,12 @@ export class FunctionsAttributeComponent implements OnInit, OnDestroy { } displayFunctionData() { + + // tslint:disable-next-line: variable-name + const node_templates = {}; + const type = 'component-resource-resolution'; + const instanceName = this.currentFuncion['instance-name']; + // insert selected templates in nodeTemplates.artifacts this.selectedTemplates.forEach((value, key) => { console.log(key); console.log(value); @@ -93,20 +99,27 @@ export class FunctionsAttributeComponent implements OnInit, OnDestroy { }; } }); + // instantiate the final node_template object to save + + this.nodeTemplates.type = 'component-resource-resolution'; + node_templates[this.currentFuncion['instance-name']] = this.nodeTemplates; + + delete this.currentFuncion['instance-name']; + this.nodeTemplates.interfaces = { ResourceResolutionComponent: { operations: { process: { - ...this.currentFuncion + ...this.currentFuncion, } } } }; - setTimeout(() => { - console.log(this.currentFuncion); - console.log(this.nodeTemplates); - }, 1500); + console.log(this.currentFuncion); + console.log(node_templates); + // tslint:disable-next-line: no-unused-expression + this.designerStore.addNodeTemplate(instanceName, type, node_templates[instanceName]); } // Template logic private setIsMappingOrTemplate(key: string, templateAndMapping: TemplateAndMapping, isFromTemplate: boolean) { -- cgit 1.2.3-korg