summaryrefslogtreecommitdiffstats
path: root/sdc-workflow-designer-ui/src/app/components/property/script-task/script-task.component.ts
blob: a0f5fd93247ca46cd2113680028304bff1114e98 (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
/*******************************************************************************
 * 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 { Component, Input, OnInit } from '@angular/core';

import { ScriptTask } from "../../../model/workflow/script-task";
import { NodeTypeService } from '../../../services/node-type.service';

@Component({
    selector: 'wfm-script-task',
    templateUrl: 'script-task.component.html',
})
export class ScriptTaskComponent implements OnInit {
    @Input() public node: ScriptTask;

    public canChangeFormat = true;
    public scriptOperations = ['JavaScript', 'Groovy'];

    constructor(private nodeTypeService: NodeTypeService) { }

    public ngOnInit() {
        const nodeDataType = this.nodeTypeService.getNodeDataTypeById(this.node.typeId);
        let scriptFormat = nodeDataType.content.scriptFormat;
        // scriptFormat is not support, reset it as null;
        if (undefined === this.scriptOperations.find(format => format == scriptFormat)) {
            scriptFormat = null;
        }
        // Defined scriptFormat value, use it as default and can not change.
        if (scriptFormat && '' != scriptFormat) {
            this.canChangeFormat = false;
            if (!this.node.scriptFormat || '' == this.node.scriptFormat) {
                this.node.scriptFormat = scriptFormat;
                this.node.script = nodeDataType.content.script;
            }
        } else {
            // Default scriptFormat value should be 'JavaScript'
            if (!this.node.scriptFormat || '' == this.node.scriptFormat) {
                this.node.scriptFormat = 'JavaScript';
                this.node.script = '';
            }
        }
    }
}