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";
23 * property component presents information of a workflow node.
24 * the presented information can be edit in this component.
25 * it may load information dynamically. the content may be different for different node type.
28 selector: 'b4t-rest-task-parameters',
29 templateUrl: 'rest-task-parameters.component.html',
31 export class RestTaskParametersComponent implements OnInit {
32 @Input() public task: RestTask;
34 public inputSources: ValueSource[] = [ValueSource.String];
35 public requestParameters: RestParameter[] = []; // not include body parameter
36 public bodyParameter: TreeNode[] = [];
37 public responseParameter: TreeNode[] = [];
38 public valueSource = ValueSource;
42 constructor(private broadcastService: BroadcastService) {
46 this.broadcastService.nodeTaskChange$.subscribe(() => {
47 this.resetRequestParams();
48 this.resetResponseParams();
52 public resetRequestParams() {
53 this.requestParameters = [];
54 this.bodyParameter = [];
56 this.task.parameters.forEach(param => {
57 if (param.position === 'body') {
58 // TODO add body parameter handler
59 // this.bodyParameter.push(param);
61 this.requestParameters.push(param);
66 public resetResponseParams() {
67 // TODO add response body handler