2025-02-25 09:39:16 +02:00

125 lines
4.6 KiB
TypeScript

///
/// Copyright © 2016-2025 The Thingsboard Authors
///
/// Licensed under the Apache License, Version 2.0 (the "License");
/// you may not use this file except in compliance with the License.
/// You may obtain a copy of the License at
///
/// http://www.apache.org/licenses/LICENSE-2.0
///
/// Unless required by applicable law or agreed to in writing, software
/// distributed under the License is distributed on an "AS IS" BASIS,
/// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/// See the License for the specific language governing permissions and
/// limitations under the License.
///
import { Component, EventEmitter, ViewChild } from '@angular/core';
import { getCurrentAuthState, NodeScriptTestService } from '@core/public-api';
import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
import { TranslateService } from '@ngx-translate/core';
import {
RuleNodeConfiguration,
RuleNodeConfigurationComponent,
ScriptLanguage
} from '@app/shared/models/rule-node.models';
import type { JsFuncComponent } from '@app/shared/components/js-func.component';
import { DebugRuleNodeEventBody } from '@shared/models/event.models';
@Component({
selector: 'tb-action-node-log-config',
templateUrl: './log-config.component.html',
styleUrls: []
})
export class LogConfigComponent extends RuleNodeConfigurationComponent {
@ViewChild('jsFuncComponent', {static: false}) jsFuncComponent: JsFuncComponent;
@ViewChild('tbelFuncComponent', {static: false}) tbelFuncComponent: JsFuncComponent;
logConfigForm: UntypedFormGroup;
tbelEnabled = getCurrentAuthState(this.store).tbelEnabled;
scriptLanguage = ScriptLanguage;
changeScript: EventEmitter<void> = new EventEmitter<void>();
readonly hasScript = true;
readonly testScriptLabel = 'rule-node-config.test-to-string-function';
constructor(private fb: UntypedFormBuilder,
private nodeScriptTestService: NodeScriptTestService,
private translate: TranslateService) {
super();
}
protected configForm(): UntypedFormGroup {
return this.logConfigForm;
}
protected onConfigurationSet(configuration: RuleNodeConfiguration) {
this.logConfigForm = this.fb.group({
scriptLang: [configuration ? configuration.scriptLang : ScriptLanguage.JS, [Validators.required]],
jsScript: [configuration ? configuration.jsScript : null, []],
tbelScript: [configuration ? configuration.tbelScript : null, []]
});
}
protected validatorTriggers(): string[] {
return ['scriptLang'];
}
protected updateValidators(emitEvent: boolean) {
let scriptLang: ScriptLanguage = this.logConfigForm.get('scriptLang').value;
if (scriptLang === ScriptLanguage.TBEL && !this.tbelEnabled) {
scriptLang = ScriptLanguage.JS;
this.logConfigForm.get('scriptLang').patchValue(scriptLang, {emitEvent: false});
setTimeout(() => {this.logConfigForm.updateValueAndValidity({emitEvent: true});});
}
this.logConfigForm.get('jsScript').setValidators(scriptLang === ScriptLanguage.JS ? [Validators.required] : []);
this.logConfigForm.get('jsScript').updateValueAndValidity({emitEvent});
this.logConfigForm.get('tbelScript').setValidators(scriptLang === ScriptLanguage.TBEL ? [Validators.required] : []);
this.logConfigForm.get('tbelScript').updateValueAndValidity({emitEvent});
}
protected prepareInputConfig(configuration: RuleNodeConfiguration): RuleNodeConfiguration {
if (configuration) {
if (!configuration.scriptLang) {
configuration.scriptLang = ScriptLanguage.JS;
}
}
return configuration;
}
testScript(debugEventBody?: DebugRuleNodeEventBody) {
const scriptLang: ScriptLanguage = this.logConfigForm.get('scriptLang').value;
const scriptField = scriptLang === ScriptLanguage.JS ? 'jsScript' : 'tbelScript';
const helpId = scriptLang === ScriptLanguage.JS ? 'rulenode/log_node_script_fn' : 'rulenode/tbel/log_node_script_fn';
const script: string = this.logConfigForm.get(scriptField).value;
this.nodeScriptTestService.testNodeScript(
script,
'string',
this.translate.instant('rule-node-config.to-string'),
'ToString',
['msg', 'metadata', 'msgType'],
this.ruleNodeId,
helpId,
scriptLang,
debugEventBody
).subscribe((theScript) => {
if (theScript) {
this.logConfigForm.get(scriptField).setValue(theScript);
this.changeScript.emit();
}
});
}
protected onValidate() {
const scriptLang: ScriptLanguage = this.logConfigForm.get('scriptLang').value;
if (scriptLang === ScriptLanguage.JS) {
this.jsFuncComponent.validateOnSubmit();
}
}
}