summaryrefslogtreecommitdiffstats
path: root/sdc-workflow-designer-ui/src/app/components/property/node-template/node-template.component.ts
blob: 5d7339d094c120e63f9ec9bbcf372f8ec162563c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/**
 * Copyright (c) 2017 ZTE Corporation.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * and the Apache License 2.0 which both accompany this distribution,
 * and are available at http://www.eclipse.org/legal/epl-v10.html
 * and http://www.apache.org/licenses/LICENSE-2.0
 *
 * Contributors:
 *     ZTE - initial API and implementation and/or initial documentation
 */
import { AfterViewInit, Component, Input } from '@angular/core';
import { Subscription } from '../../../../../node_modules/rxjs/Subscription.d';

import { PlanTreeviewItem } from '../../../model/plan-treeview-item';
import { NodeTemplate } from '../../../model/topology/node-template';
import { ValueSource } from '../../../model/value-source.enum';
import { Parameter } from '../../../model/workflow/parameter';
import { ToscaNodeTask } from '../../../model/workflow/tosca-node-task';
import { BroadcastService } from '../../../services/broadcast.service';
import { DataService } from '../../../services/data/data.service';

/**
 * node template component provides operations about tosca modules which saved in winery.
 * This component will be used in the property component while the corresponding workflow node is calling the node template's operation
 */
@Component({
    selector: 'b4t-node-template',
    templateUrl: 'node-template.component.html',
})
export class NodeTemplateComponent implements AfterViewInit {
    @Input() public node: ToscaNodeTask;
    @Input() public planItems: PlanTreeviewItem[];

    public inputSources: ValueSource[] = [ValueSource.String, ValueSource.Variable, ValueSource.Topology, ValueSource.Plan];
    public outputSources: ValueSource[] = [ValueSource.Topology, ValueSource.Plan];
    public nodeInterfaces: string[] = [];
    public nodeOperations: any[] = [];
    public nodeTemplates: NodeTemplate[] = [];

    constructor(private dataService: DataService) {
    }

    public ngAfterViewInit() {
        this.dataService.loadNodeTemplates()
            .subscribe(nodeTemplates => this.nodeTemplates = nodeTemplates);

        this.loadInterfaces();
        this.loadOperations();
    }

    public nodeTemplateChanged() {
        this.setTemplateNamespace();

        this.nodeInterfaceChanged('');

        this.loadInterfaces();
    }

    public nodeInterfaceChanged(newInterface: string) {
        this.node.nodeInterface = newInterface;

        this.nodeOperationChanged('');

        this.loadOperations();
    }

    public nodeOperationChanged(operation: string) {
        this.node.operation = operation;

        this.node.input = [];
        this.node.output = [];

        this.loadParameters();
    }

    private setTemplateNamespace() {
        const nodeTemplate = this.nodeTemplates.find(
            tmpNodeTemplate => tmpNodeTemplate.id === this.node.template.id);

        if (nodeTemplate) {
            this.node.template.namespace = nodeTemplate.namespace;
            this.node.template.type = nodeTemplate.type;
        }
    }

    private loadInterfaces() {
        if (this.node.template.id) {
            this.dataService.loadNodeTemplateInterfaces(this.node.template)
                .subscribe(interfaces => {
                    this.nodeInterfaces = interfaces;
                });
        } else {
            this.nodeInterfaces = [];
        }
    }

    private loadOperations() {
        if (this.node.nodeInterface) {
            this.nodeOperations = [];
            this.dataService.loadNodeTemplateOperations(
                this.node.template,
                this.node.nodeInterface)
                .subscribe(operations => this.nodeOperations = operations);
        } else {
            this.nodeOperations = [];
        }
    }

    private loadParameters() {
        if (this.node.operation) {
            this.dataService.loadNodeTemplateOperationParameter(
                this.node.template,
                this.node.nodeInterface,
                this.node.operation)
                .subscribe(params => {
                    this.node.input = [];
                    this.node.output = [];

                    params.input.forEach(param => {
                        const p = new Parameter(param, '', ValueSource[ValueSource.String]);
                        this.node.input.push(p);
                    });

                    params.output.forEach(param => {
                        const p = new Parameter(param, '', ValueSource[ValueSource.Definition]);
                        this.node.output.push(p);
                    });
                });
        }
    }
}