summaryrefslogtreecommitdiffstats
path: root/cds-ui
diff options
context:
space:
mode:
authorAhmedeldeeb50 <ahmed.eldeeb.ext@orange.com>2020-10-24 19:30:57 +0200
committerAhmedeldeeb50 <ahmed.eldeeb.ext@orange.com>2020-10-24 19:30:57 +0200
commit7004cffc6b82c448abe62b1642b91f2e45ec2e0b (patch)
treec2fdc641719d2240fd6a1ccde527a2e41938af7f /cds-ui
parentcf1e08373c11c19ef6acf6f1390225c6e9ccf4eb (diff)
save resource-resolution component to the package
Issue-ID: CCSDK-2900 Signed-off-by: Ahmedeldeeb50 <ahmed.eldeeb.ext@orange.com> Change-Id: I7c1e88bfd8b367e8a7e598353416068ed017aba2
Diffstat (limited to 'cds-ui')
-rw-r--r--cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.store.ts16
-rw-r--r--cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/functions-attribute/functions-attribute.component.ts23
2 files changed, 26 insertions, 13 deletions
diff --git a/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.store.ts b/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.store.ts
index 37fc64051..d3326165f 100644
--- a/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.store.ts
+++ b/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.store.ts
@@ -19,12 +19,12 @@ limitations under the License.
============LICENSE_END============================================
*/
-import {Injectable} from '@angular/core';
-import {Store} from '../../../../common/core/stores/Store';
-import {DesignerService} from './designer.service';
-import {DesignerDashboardState} from './model/designer.dashboard.state';
-import {DeclarativeWorkflow} from './model/designer.workflow';
-import {NodeTemplate} from './model/desinger.nodeTemplate.model';
+import { Injectable } from '@angular/core';
+import { Store } from '../../../../common/core/stores/Store';
+import { DesignerService } from './designer.service';
+import { DesignerDashboardState } from './model/designer.dashboard.state';
+import { DeclarativeWorkflow } from './model/designer.workflow';
+import { NodeTemplate } from './model/desinger.nodeTemplate.model';
@Injectable({
@@ -93,14 +93,14 @@ export class DesignerStore extends Store<DesignerDashboardState> {
* you can add node template and don't add workflow step when you add dependencies for the
* dg-generic function for example
*/
- addNodeTemplate(nodeTemplateName: string, type: string) {
+ addNodeTemplate(nodeTemplateName: string, type: string, nodeTemplate: {} = new NodeTemplate(type)) {
this.setState({
...this.state,
template: {
...this.state.template,
node_templates: {
...this.state.template.node_templates,
- [nodeTemplateName]: new NodeTemplate(type)
+ [nodeTemplateName]: nodeTemplate
}
}
});
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) {