2  * Copyright (c) 2017 ZTE Corporation.
 
   3  * All rights reserved. This program and the accompanying materials
 
   4  * are made available under the terms of the Eclipse Public License v1.0
 
   5  * and the Apache License 2.0 which both accompany this distribution,
 
   6  * and are available at http://www.eclipse.org/legal/epl-v10.html
 
   7  * and http://www.apache.org/licenses/LICENSE-2.0
 
  10  *     ZTE - initial API and implementation and/or initial documentation
 
  13 import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
 
  14 import { TreeNode } from 'primeng/primeng';
 
  16 import { Swagger } from '../../../../model/swagger';
 
  17 import { RestTask } from '../../../../model/workflow/rest-task';
 
  18 import { BroadcastService } from '../../../../services/broadcast.service';
 
  19 import { RestParameter } from "../../../../model/workflow/rest-parameter";
 
  20 import { ValueSource } from "../../../../model/value-source.enum";
 
  21 import { SwaggerTreeConverterService } from "../../../../services/swagger-tree-converter.service";
 
  22 import { PlanTreeviewItem } from "../../../../model/plan-treeview-item";
 
  23 import { WorkflowConfigService } from "../../../../services/workflow-config.service";
 
  24 import { RestService } from '../../../../services/rest.service';
 
  27  * property component presents information of a workflow node.
 
  28  * the presented information can be edit in this component.
 
  29  * it may load information dynamically. the content may be different for different node type.
 
  32     selector: 'b4t-rest-task-parameters',
 
  33     templateUrl: 'rest-task-parameters.component.html',
 
  35 export class RestTaskParametersComponent implements OnInit {
 
  36     @Input() public task: RestTask;
 
  37     @Input() public planItems: PlanTreeviewItem[];
 
  39     public inputSources: ValueSource[] = [ValueSource.String, ValueSource.Variable, ValueSource.Plan];
 
  40     public requestParameters: RestParameter[] = []; // not include body parameter
 
  41     public bodyParameter: TreeNode[] = [];
 
  42     public responseParameter: TreeNode[] = [];
 
  43     public valueSource = ValueSource;
 
  47     constructor(private broadcastService: BroadcastService,
 
  48         private restService: RestService,
 
  49         private swaggerTreeConverterService: SwaggerTreeConverterService) {
 
  53         this.broadcastService.nodeTaskChange$.subscribe(() => {
 
  54             this.resetRequestParams();
 
  55             this.resetResponseParams();
 
  59     public resetRequestParams() {
 
  60         this.requestParameters = [];
 
  61         this.bodyParameter = [];
 
  63         this.task.parameters.forEach(param => {
 
  64             if (param.position === 'body') {
 
  65                 const requestTreeNode = this.swaggerTreeConverterService
 
  66                     .schema2TreeNode(this.restService.getSwaggerInfo(this.task.restConfigId), 'Request Param', param.schema, param.value);
 
  67                 param.value = requestTreeNode.value;
 
  68                 param.value = param.schema.value;
 
  69                 this.bodyParameter.push(requestTreeNode);
 
  71                 this.requestParameters.push(param);
 
  76     public resetResponseParams() {
 
  77         // TODO add response body handler