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
import { IPSDEUIDELogicLogic, IPSDEUILogicParam } from '@ibiz/dynamic-model-api';
import { DataServiceHelp } from 'ibiz-core';
import { UIActionContext } from '../uiaction-context';
import { AppUILogicNodeBase } from './logic-node-base';
/**
* 实体处理逻辑节点
*
* @export
* @class AppUILogicDeLogicNode
*/
export class AppUILogicDeLogicNode extends AppUILogicNodeBase {
constructor() {
super();
}
/**
* 执行节点
*
* @param {IPSDEUIDELogicLogic} logicNode 逻辑节点模型数据
* @param {UIActionContext} actionContext 界面逻辑上下文
* @memberof AppUILogicDeLogicNode
*/
public async executeNode(logicNode: IPSDEUIDELogicLogic, actionContext: UIActionContext) {
try {
await this.handleDELogic(logicNode, actionContext);
return this.computeNextNodes(logicNode, actionContext);
} catch (error: any) {
throw new Error(`逻辑节点 ${logicNode.name}${error?.message ? error?.message : '发生未知错误!'}`);
}
}
/**
* 处理实体处理逻辑
*
* @private
* @param {IPSDEUIDELogicLogic} logicNode 逻辑节点模型数据
* @param {UIActionContext} actionContext 界面逻辑上下文
* @memberof AppUILogicDeLogicNode
*/
private async handleDELogic(logicNode: IPSDEUIDELogicLogic, actionContext: UIActionContext) {
const dstEntity = logicNode.getDstPSAppDataEntity();
const deLogicCodeName = logicNode.getDstPSAppDELogic()?.codeName;
const dstParam = actionContext.getParam((logicNode.getDstPSDEUILogicParam() as IPSDEUILogicParam)?.codeName);
const retParam = actionContext.getParam((logicNode.getRetPSDEUILogicParam() as IPSDEUILogicParam)?.codeName);
if (dstEntity && dstParam && deLogicCodeName) {
try {
const service = await DataServiceHelp.getInstance().getService(dstEntity);
const result = await service['executeAppDELogic'](deLogicCodeName, actionContext.context, dstParam.getReal() ? dstParam.getReal() : {});
if (result) {
if(retParam){
retParam.bind(result);
}
actionContext.bindLastReturnParam(result);
return retParam;
} else {
throw new Error(`调用实体处理逻辑异常`);
}
} catch (error: any) {
throw new Error(`调用实体处理逻辑异常${error?.message ? error.message : ''}`);
}
} else {
throw new Error(`调用实体处理逻辑参数不足`);
}
}
}