aboutsummaryrefslogtreecommitdiffstats
path: root/cds-ui/designer-client/src
diff options
context:
space:
mode:
authorShaabanEltanany <shaaban.eltanany.ext@orange.com>2020-10-12 15:10:17 +0200
committerShaabanEltanany <shaaban.eltanany.ext@orange.com>2020-10-12 16:34:18 +0200
commitf36e67c64667080c78a1d30f5aace683391d8a14 (patch)
tree7e3a7295952161cb0f1497dbde46f6564344a6e7 /cds-ui/designer-client/src
parentfeaa237cda579079b40f3014634387bf493cc2da (diff)
adding inputs and outputs attributes
Issue-ID: CCSDK-2874 Signed-off-by: ShaabanEltanany <shaaban.eltanany.ext@orange.com> Change-Id: I2135575105379be9dc464245ea3a74029d541baf
Diffstat (limited to 'cds-ui/designer-client/src')
-rw-r--r--cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/action-attributes/action-attributes.component.ts36
-rw-r--r--cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/designer.store.ts11
2 files changed, 46 insertions, 1 deletions
diff --git a/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/action-attributes/action-attributes.component.ts b/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/action-attributes/action-attributes.component.ts
index 8e8b6ad3e..ee4b19930 100644
--- a/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/action-attributes/action-attributes.component.ts
+++ b/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/action-attributes/action-attributes.component.ts
@@ -1,5 +1,6 @@
import {Component, OnInit} from '@angular/core';
import {InputActionAttribute, OutputActionAttribute} from './models/InputActionAttribute';
+import {DesignerStore} from '../designer.store';
@Component({
selector: 'app-action-attributes',
@@ -18,7 +19,7 @@ export class ActionAttributesComponent implements OnInit {
outputOtherType = '';
inputOtherType = '';
- constructor() {
+ constructor(private designerStore: DesignerStore) {
}
@@ -67,6 +68,9 @@ export class ActionAttributesComponent implements OnInit {
this.addInput(this.inputActionAttribute);
this.addOutput(this.outputActionAttribute);
this.clearFormInputs();
+ console.log(this.storeInputs(this.inputs));
+ this.designerStore.setInputsToSpecificWorkflow(this.storeInputs(this.inputs));
+ console.log(this.storeOutputs(this.outputs));
}
private clearFormInputs() {
@@ -75,4 +79,34 @@ export class ActionAttributesComponent implements OnInit {
this.outputOtherType = '';
this.inputOtherType = '';
}
+
+ private storeInputs(InputActionAttributes: InputActionAttribute[]) {
+
+ let inputs = '';
+ InputActionAttributes.forEach(input => {
+ inputs += this.appendAttributes(input);
+
+ });
+ const returnedInputMap = new Map<string, string>();
+ returnedInputMap.set('inputs', inputs);
+ return returnedInputMap;
+ }
+
+ private storeOutputs(OutputActionAttributes: OutputActionAttribute[]) {
+ let outputs = '';
+ OutputActionAttributes.forEach(output => {
+ outputs += this.appendAttributes(output);
+ });
+ const returnedOutputMap = new Map<string, string>();
+ returnedOutputMap.set('outputs', outputs);
+ return returnedOutputMap;
+ }
+
+ private appendAttributes(output: OutputActionAttribute) {
+ return '"' + output.name + '":{\n' +
+ ' \'required\': ' + output.required + ',\n' +
+ ' \'type\': "' + output.type + '",\n' +
+ ' \'description\': "' + output.description + '"\n' +
+ ' }' + '\n';
+ }
}
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 e07fbb94d..923d59e91 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
@@ -145,6 +145,17 @@ export class DesignerStore extends Store<DesignerDashboardState> {
});
}
+ setInputsToSpecificWorkflow(inputs: Map<string, string>) {
+ const mapOfWorkflows = this.state.template.workflows;
+ /*mapOfWorkflows.forEach(((value, key) => {
+ if (value.includes('resource-assignment')) {
+ value += inputs;
+ }
+ }));*/
+ console.log('the new workflows');
+ console.log(mapOfWorkflows);
+ }
+
clear() {
this.setState(new DesignerDashboardState());
}