From afd5f9573dfd0c89758ea3f0c0b02a838888ef90 Mon Sep 17 00:00:00 2001 From: Arielk Date: Sun, 27 Jan 2019 16:30:57 +0200 Subject: Map operation outputs to input properties Change-Id: Iedf41e429c87ac9e15c8ff520e3ce7d69e44293d Issue-ID: SDC-2084 Signed-off-by: Arielk --- catalog-ui/src/app/models/operation.ts | 6 +-- .../operation-creator.component.html | 1 + .../operation-creator.component.ts | 12 +++++ .../param-row/param-row.component.html | 27 +++++++--- .../param-row/param-row.component.less | 4 ++ .../param-row/param-row.component.ts | 63 ++++++++++++++++++---- 6 files changed, 92 insertions(+), 21 deletions(-) (limited to 'catalog-ui') diff --git a/catalog-ui/src/app/models/operation.ts b/catalog-ui/src/app/models/operation.ts index 6eeccecd88..d36b72a140 100644 --- a/catalog-ui/src/app/models/operation.ts +++ b/catalog-ui/src/app/models/operation.ts @@ -81,9 +81,9 @@ export class OperationModel extends BEOperationModel { } } - public displayName(): string { - const lastDot = this.name ? this.name.lastIndexOf('.') : -1; - return lastDot === -1 ? this.name : this.name.substr(lastDot + 1); + public displayType(): string { + const lastDot = this.interfaceType ? this.interfaceType.lastIndexOf('.') : -1; + return lastDot === -1 ? this.interfaceType : this.interfaceType.substr(lastDot + 1); } } diff --git a/catalog-ui/src/app/ng2/pages/interface-operation/operation-creator/operation-creator.component.html b/catalog-ui/src/app/ng2/pages/interface-operation/operation-creator/operation-creator.component.html index 4acf424993..5848b585e9 100644 --- a/catalog-ui/src/app/ng2/pages/interface-operation/operation-creator/operation-creator.component.html +++ b/catalog-ui/src/app/ng2/pages/interface-operation/operation-creator/operation-creator.component.html @@ -157,6 +157,7 @@ [isAssociateWorkflow]="isUsingExistingWF()" [param]="param" [inputProps]="inputProperties" + [operationOutputs]="operationOutputs" [onRemoveParam]="onRemoveParam" [readonly]="readonly" [validityChanged]="validityChanged"> diff --git a/catalog-ui/src/app/ng2/pages/interface-operation/operation-creator/operation-creator.component.ts b/catalog-ui/src/app/ng2/pages/interface-operation/operation-creator/operation-creator.component.ts index e746c6d6fe..fd9e1cf5a8 100644 --- a/catalog-ui/src/app/ng2/pages/interface-operation/operation-creator/operation-creator.component.ts +++ b/catalog-ui/src/app/ng2/pages/interface-operation/operation-creator/operation-creator.component.ts @@ -73,6 +73,7 @@ export class OperationCreatorComponent { assignOutputParameters: { [key: string]: { [key: string]: Array; }; } = {}; tableParameters: Array = []; + operationOutputs: Array = []; associationOptions: Array = []; workflowAssociationType: string; @@ -134,6 +135,17 @@ export class OperationCreatorComponent { this.onSelectInterface(new DropDownOption(this.operation.interfaceType)); this.validityChanged(); + this.operationOutputs = _.reduce( + this.interfaces, + (acc: Array, interf) => [ + ...acc, + ..._.filter( + interf.operations, + op => op.uniqueId !== this.operation.uniqueId + ), + ], + []); + if (this.enableWorkflowAssociation) { this.isLoading = true; this.workflowServiceNg2.getWorkflows().subscribe(workflows => { diff --git a/catalog-ui/src/app/ng2/pages/interface-operation/operation-creator/param-row/param-row.component.html b/catalog-ui/src/app/ng2/pages/interface-operation/operation-creator/param-row/param-row.component.html index d23783715c..aa4277c004 100644 --- a/catalog-ui/src/app/ng2/pages/interface-operation/operation-creator/param-row/param-row.component.html +++ b/catalog-ui/src/app/ng2/pages/interface-operation/operation-creator/param-row/param-row.component.html @@ -38,14 +38,27 @@
- - + [(ngModel)]="param.inputId" + (change)="onChangeProperty($event)" + [ngClass]="{'disabled': readonly}" + [attr.data-tests-id]="'value-param-property-' + (param.name || 'unnamed')"> + + + + + diff --git a/catalog-ui/src/app/ng2/pages/interface-operation/operation-creator/param-row/param-row.component.less b/catalog-ui/src/app/ng2/pages/interface-operation/operation-creator/param-row/param-row.component.less index 99a54bb65c..f6cda17777 100644 --- a/catalog-ui/src/app/ng2/pages/interface-operation/operation-creator/param-row/param-row.component.less +++ b/catalog-ui/src/app/ng2/pages/interface-operation/operation-creator/param-row/param-row.component.less @@ -35,6 +35,10 @@ padding-left: 10px; } + select { + width: 100%; + } + &.field-property { &:last-child { flex: 1; diff --git a/catalog-ui/src/app/ng2/pages/interface-operation/operation-creator/param-row/param-row.component.ts b/catalog-ui/src/app/ng2/pages/interface-operation/operation-creator/param-row/param-row.component.ts index 89aa251252..bfa2b11b1c 100644 --- a/catalog-ui/src/app/ng2/pages/interface-operation/operation-creator/param-row/param-row.component.ts +++ b/catalog-ui/src/app/ng2/pages/interface-operation/operation-creator/param-row/param-row.component.ts @@ -1,9 +1,20 @@ import {Component, Input} from '@angular/core'; import {DataTypeService} from "app/ng2/services/data-type.service"; -import {OperationParameter, InputBEModel} from 'app/models'; +import {OperationModel, OperationParameter, InputBEModel} from 'app/models'; import {DropDownOption} from "../operation-creator.component"; import {DropdownValue} from "app/ng2/components/ui/form-components/dropdown/ui-element-dropdown.component"; +class DropdownValueType extends DropdownValue { + type: String; + + constructor(value: string, label: string, type?: String) { + super(value, label); + if (type) { + this.type = type; + } + } +} + @Component({ selector: 'param-row', templateUrl: './param-row.component.html', @@ -13,6 +24,7 @@ import {DropdownValue} from "app/ng2/components/ui/form-components/dropdown/ui-e export class ParamRowComponent { @Input() param: OperationParameter; @Input() inputProps: Array; + @Input() operationOutputs: Array; @Input() onRemoveParam: Function; @Input() isAssociateWorkflow: boolean; @Input() readonly: boolean; @@ -20,6 +32,7 @@ export class ParamRowComponent { @Input() validityChanged: Function; propTypeEnum: Array = []; + operationOutputCats: Array<{ operationName: string, outputs: Array }> = []; filteredInputProps: Array = []; constructor(private dataTypeService: DataTypeService) {} @@ -31,6 +44,7 @@ export class ParamRowComponent { prop => prop.type ) ); + this.onChangeType(); this.validityChanged(); } @@ -48,14 +62,31 @@ export class ParamRowComponent { prop => new DropdownValue(prop.uniqueId, prop.name) ); + this.operationOutputCats = _.filter( + _.map( + this.operationOutputs, + op => { + return { + operationName: `${op.displayType()}.${op.name}`, + outputs: _.map( + _.filter(op.outputs.listToscaDataDefinition, output => !this.param.type || output.type === this.param.type), + output => new DropdownValueType( + `${op.interfaceType}.${op.name}.${output.name}`, + output.name, + output.type + ) + ) + }; + } + ), + category => category.outputs.length > 0 + ); + if (this.param.inputId) { - const selProp = _.find( - this.getPrimitiveSubtypes(), - prop => prop.uniqueId === this.param.inputId - ); + const selProp = this.getSelectedProp(); if (selProp && selProp.type === this.param.type) { this.param.inputId = '-1'; - setTimeout(() => this.param.inputId = selProp.uniqueId, 100); + setTimeout(() => this.param.inputId = selProp.uniqueId || selProp.value, 0); } else { this.param.inputId = null; } @@ -65,10 +96,7 @@ export class ParamRowComponent { } onChangeProperty() { - const newProp = _.find( - this.getPrimitiveSubtypes(), - prop => this.param.inputId === prop.uniqueId - ); + const newProp = this.getSelectedProp(); if (!this.param.type) { this.param.type = newProp.type; @@ -76,7 +104,7 @@ export class ParamRowComponent { } if (!this.param.name) { - this.param.name = newProp.name; + this.param.name = newProp.name || newProp.label; } this.validityChanged(); @@ -108,6 +136,19 @@ export class ParamRowComponent { return flattenedProps; } + getSelectedProp() { + return _.find( + this.getPrimitiveSubtypes(), + prop => this.param.inputId === prop.uniqueId + ) || _.find( + _.reduce( + this.operationOutputCats, + (acc, cat) => [...acc, ...cat.outputs], + []), + (out: DropdownValueType) => this.param.inputId === out.value + ); + } + isTypePrimitive(type): boolean { return ( type === 'string' || -- cgit 1.2.3-korg