ui-logic-node.txt 31.1 KB
Newer Older
Mosher's avatar
Mosher committed
1 2 3 4 5 6
<#-- START: 计算下一节点  -->
<#macro computeNextNode logicNode>
    <#if logicNode.getPSDEUILogicLinks?? && logicNode.getPSDEUILogicLinks()??>
        <#list logicNode.getPSDEUILogicLinks() as link>
            <#if link.getDstPSDEUILogicNode?? && link.getDstPSDEUILogicNode()??>
                <#if link.getPSDEUILogicLinkGroupCond?? && link.getPSDEUILogicLinkGroupCond()??>
Mosher's avatar
Mosher committed
7
        //  暂未支持连接条件
Mosher's avatar
Mosher committed
8
                </#if>
Mosher's avatar
Mosher committed
9
        await this.execute_${link.getDstPSDEUILogicNode().codeName?lower_case}_node(actionContext);
Mosher's avatar
Mosher committed
10 11 12 13 14 15 16 17
            </#if>
        </#list>
    </#if>
</#macro>
<#-- END: 计算下一节点  -->

<#--  START: 开始节点  -->
<#macro beginNode logicNode>
Mosher's avatar
Mosher committed
18
        actionContext.setResult(actionContext.defaultParam.getReal());
Mosher's avatar
Mosher committed
19 20 21 22 23
</#macro>
<#--  END: 开始节点  -->

<#--  START: 准备处理参数节点  -->
<#macro prepareParamNode logicNode>
Mosher's avatar
Mosher committed
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
    <#if logicNode.getPSDEUILogicNodeParams?? && logicNode.getPSDEUILogicNodeParams()??>
        try {
        <#assign index = 0>
        <#list logicNode.getPSDEUILogicNodeParams() as param>
            <#assign index = index + 1>
            <#if param.getParamAction?? && param.getParamAction()??>
                <#if param.getParamAction() == 'SETPARAMVALUE'>
                    <#if (param.getDstPSDEUILogicParam?? && param.getDstPSDEUILogicParam()??) || (param.getSrcValueType?? && param.getSrcValueType()??)>
            //  目标数据
            const dstParam_${index}: any = actionContext.getParam('<#if param.getDstPSDEUILogicParam?? && param.getDstPSDEUILogicParam()??>${param.getDstPSDEUILogicParam().codeName}</#if>');
            //  无值类型
                        <#if param.getSrcValueType?? && param.getSrcValueType()?? && param.getSrcValueType() == 'NONEVALUE'>
                            <#if param.getDstFieldName?? && param.getDstFieldName()??>
            dstParam_${index}.reset('${param.getDstFieldName()?lower_case}');
                            <#else>
            dstParam_${index}.bind(undefined);
                            </#if>
                        <#else>
                            <#if param.getSrcValueType?? && param.getSrcValueType()?? && (param.getSrcValueType() == 'SRCDLPARAM' || param.getSrcValueType() == 'WEBCONTEXT' || param.getSrcValueType() == 'VIEWPARAM')>
                            //  源逻辑参数、网页请求上下文、当前视图参数
            const srcParam_${index} = actionContext.getParam('<#if param.getSrcPSDEUILogicParam?? && param.getSrcPSDEUILogicParam()??>${param.getSrcPSDEUILogicParam().codeName}</#if>');
            const result_${index} = srcParam_${index}.get('<#if param.getSrcFieldName?? && param.getSrcFieldName()??>${param.getSrcFieldName()?lower_case}</#if>') ? srcParam_${index}.get('<#if param.getSrcFieldName?? && param.getSrcFieldName()??>${param.getSrcFieldName()?lower_case}</#if>') : null;
                            <#elseif param.getSrcValueType?? && param.getSrcValueType()?? && (param.getSrcValueType() == 'APPLICATION' || param.getSrcValueType() == 'SESSION' || param.getSrcValueType() == 'APPDATA' || param.getSrcValueType() == 'DATACONTEXT')>
                            //  系统全局对象、用户全局对象、应用上下文、数据上下文
            const result_${index} = actionContext['<#if param.getSrcFieldName?? && param.getSrcFieldName()??>${param.getSrcFieldName()?lower_case}</#if>'];
                            <#elseif param.getSrcValueType?? && param.getSrcValueType()?? && param.getSrcValueType() == 'ENVPARAM'>
                            //  环境参数
            //  TODO 环境参数
            const result_${index} = '';
                            <#elseif param.getSrcValueType?? && param.getSrcValueType()?? && param.getSrcValueType() == 'EXPRESSION'>
                            //  计算式
            //  TODO 计算式
            const result_${index} = '';
                            <#elseif param.getSrcValueType?? && param.getSrcValueType()?? && param.getSrcValueType() == 'SRCVALUE'>
                            //  直接值
            const result_${index} = '<#if param.getSrcValue?? && param.getSrcValue()??>${param.getSrcValue()}</#if>';
                            <#elseif param.getSrcValueType?? && param.getSrcValueType()?? && param.getSrcValueType() == 'NULLVALUE'>
                            //  空值(NULL)
            const result_${index} = null;                
                            <#else>
                            //  未支持
            const result_${index} = undefined;                
                            </#if>
                            <#if param.getDstFieldName?? && param.getDstFieldName()??>
            const dstParam_${index}.set('${param.getDstFieldName()?lower_case}', result_${index});
                            <#else>
            dstParam_${index}.bind(result_${index});
                            </#if>
                        </#if>
                    <#else>
            throw new Error(`逻辑参数${param.name}源类型参数或者目标逻辑参数缺失`);
                    </#if>
                <#elseif param.getParamAction() == 'RESETPARAM'>
            const dstParam_${index}: any = actionContext.getParam('<#if param.getDstPSDEUILogicParam?? && param.getDstPSDEUILogicParam()??>${param.getDstPSDEUILogicParam().codeName}</#if>');
            dstParam_${index}.resetAll();
                <#elseif param.getParamAction() == 'COPYPARAM'>
            //  源数据
            const srcParam_${index}: any = actionContext.getParam('<#if param.getSrcPSDEUILogicParam?? && param.getSrcPSDEUILogicParam()??>${param.getSrcPSDEUILogicParam().codeName}</#if>');
            //  目标数据
            const dstParam_${index}: any = actionContext.getParam('<#if param.getDstPSDEUILogicParam?? && param.getDstPSDEUILogicParam()??>${param.getDstPSDEUILogicParam().codeName}</#if>');
            srcParam_${index}.copyTo(dstParam_${index});
                <#elseif param.getParamAction() == 'BINDPARAM'>
            //  源数据
            const srcParam_${index}: any = actionContext.getParam('<#if param.getSrcPSDEUILogicParam?? && param.getSrcPSDEUILogicParam()??>${param.getSrcPSDEUILogicParam().codeName}</#if>');
            //  目标数据
            const dstParam_${index}: any = actionContext.getParam('<#if param.getDstPSDEUILogicParam?? && param.getDstPSDEUILogicParam()??>${param.getDstPSDEUILogicParam().codeName}</#if>');
            const srcFieldName_${index} = '<#if param.getSrcFieldName?? && param.getSrcFieldName()??>${param.getSrcFieldName()?lower_case}</#if>';
            if (srcFieldName_${index}) {
                dstParam_${index}.bind(srcParam_${index}.get(srcFieldName_${index}));
            } else {
                dstParam_${index}.bind(srcParam_${index}.getReal());
            }
                <#elseif param.getParamAction() == 'RENEWPARAM'>
            //  目标数据
            const dstParam_${index}: any = actionContext.getParam('<#if param.getDstPSDEUILogicParam?? && param.getDstPSDEUILogicParam()??>${param.getDstPSDEUILogicParam().codeName}</#if>');
            dstParam_${index}.renew();
                <#elseif param.getParamAction() == 'APPENDPARAM'>
            //  源数据
            const srcParam_${index}: any = actionContext.getParam('<#if param.getSrcPSDEUILogicParam?? && param.getSrcPSDEUILogicParam()??>${param.getSrcPSDEUILogicParam().codeName}</#if>');
            //  目标数据
            const dstParam_${index}: any = actionContext.getParam('<#if param.getDstPSDEUILogicParam?? && param.getDstPSDEUILogicParam()??>${param.getDstPSDEUILogicParam().codeName}</#if>');
            const srcFieldName_${index} = '<#if param.getSrcFieldName?? && param.getSrcFieldName()??>${param.getSrcFieldName()?lower_case}</#if>';
            let objParam_${index}: any;
            if (srcFieldName_${index}) {
                objParam_${index} = srcParam_${index}.get(srcFieldName_${index});
            } else {
                objParam_${index} = srcParam_${index}.getReal();
            }
            dstParam_${index}.append(${param.getDstIndex()?c}, objParam_${index}, ${param.getSrcIndex()?c}, ${param.getSrcSize()?c});
                <#elseif param.getParamAction() == 'SORTPARAM'>
             //  目标数据
            const dstParam_${index}: any = actionContext.getParam('<#if param.getDstPSDEUILogicParam?? && param.getDstPSDEUILogicParam()??>${param.getDstPSDEUILogicParam().codeName}</#if>');
            const dstFieldName_${index} = '<#if param.getDstFieldName?? && param.getDstFieldName()??>${param.getDstFieldName()?lower_case}</#if>';
            if (!dstFieldName_${index}) {
                throw new Error(`逻辑参数${param.name}未指定设置排序属性`);
            } else {
                dstParam_${index}.sort(dstFieldName_${index}, '${param.getDstSortDir()}');
            }
                </#if>
            </#if>
        </#list>
        } catch (error: any) {
            throw new Error(`逻辑节点 ${logicNode.name} <#noparse>${error ## error.message ? error.message : '发生未知错误!'}`</#noparse>);
        }
    </#if>
Mosher's avatar
Mosher committed
129 130 131 132 133
</#macro>
<#--  END: 准备处理参数节点  -->

<#--  START: 重置参数节点  -->
<#macro resetParamNode logicNode>
Mosher's avatar
Mosher committed
134 135 136 137 138 139 140
    <#if logicNode.getDstPSDEUILogicParam?? && logicNode.getDstPSDEUILogicParam()??>
        const dstParam: any = actionContext.getParam('${logicNode.getDstPSDEUILogicParam().codeName}');
        dstParam.resetAll();
        actionContext.bindLastReturnParam(null);
    <#else>
        throw new Error(`操作参数缺失!`);
    </#if>
Mosher's avatar
Mosher committed
141 142 143 144 145
</#macro>
<#--  END: 重置参数节点  -->

<#--  START: 拷贝参数节点  -->
<#macro copyParamNode logicNode>
Mosher's avatar
Mosher committed
146 147 148 149 150 151 152 153 154 155 156 157 158 159
    <#if logicNode.getDstPSDEUILogicParam?? && logicNode.getDstPSDEUILogicParam()?? && logicNode.getSrcPSDEUILogicParam?? && logicNode.getSrcPSDEUILogicParam()??>
        try {
            // 源数据
            const srcParam:any = actionContext.getParam('${logicNode.getSrcPSDEUILogicParam().codeName}');
            // 目标数据
            const dstParam: any = actionContext.getParam('${logicNode.getDstPSDEUILogicParam().codeName}');
            srcParam.copyTo(dstParam);
            actionContext.bindLastReturnParam(null);
        } catch (error: any) {
            throw new Error(`逻辑参数 ${logicNode.getDstPSDEUILogicParam().name} <#noparse>${error ## error.message ? error.message : '发生未知错误!'}`</#noparse>);
        }
    <#else>
        throw new Error('操作参数或者源参数缺失!');
    </#if>
Mosher's avatar
Mosher committed
160 161 162 163 164
</#macro>
<#--  END: 拷贝参数节点  -->

<#--  START: 绑定参数节点  -->
<#macro bindParamNode logicNode>
Mosher's avatar
Mosher committed
165
    <#if logicNode.getDstPSDEUILogicParam?? && logicNode.getDstPSDEUILogicParam()?? && logicNode.getSrcPSDEUILogicParam?? && logicNode.getSrcPSDEUILogicParam()??>
Mosher's avatar
Mosher committed
166 167 168 169 170 171 172 173 174 175 176 177 178 179
        try {
            //  源数据
            const srcParam = actionContext.getParam('${logicNode.getSrcPSDEUILogicParam().codeName}');
            //  目标数据
            const dstParam = actionContext.getParam('${logicNode.getDstPSDEUILogicParam().codeName}');
            //  源属性
            const srcFieldName: string = '<#if logicNode.getSrcFieldName?? && logicNode.getSrcFieldName()??>${logicNode.getSrcFieldName()?lower_case}</#if>';
            if (srcFieldName) {
                dstParam.bind(srcParam.get(srcFieldName));
            } else {
                dstParam.bind(srcParam.getReal());
            }
            actionContext.bindLastReturnParam(null);
        } catch (error: any) {
Mosher's avatar
Mosher committed
180
            throw new Error(`逻辑参数${logicNode.getDstPSDEUILogicParam().name} <#noparse>${error && error.message ? error.message : '发生未知错误!'}</#noparse>`);
Mosher's avatar
Mosher committed
181 182
        }
    <#else>
Mosher's avatar
Mosher committed
183
        throw new Error('操作参数或者源参数缺失!');
Mosher's avatar
Mosher committed
184
    </#if>
Mosher's avatar
Mosher committed
185 186 187 188 189
</#macro>
<#--  END: 绑定参数节点 -->

<#--  START: 重新建立参数节点  -->
<#macro renewParamNode logicNode>
Mosher's avatar
Mosher committed
190 191 192 193 194 195 196
    <#if logicNode.getDstPSDEUILogicParam?? && logicNode.getDstPSDEUILogicParam()??>
        const dstParam: any = actionContext.getParam('${logicNode.getDstPSDEUILogicParam().codeName}');
        dstParam.renew();
        actionContext.bindLastReturnParam(null);
    <#else>
        throw new Error(`操作参数缺失!`);
    </#if>
Mosher's avatar
Mosher committed
197 198 199 200 201
</#macro>
<#--  END: 重新建立参数节点  -->

<#--  START: 调用实体界面行为节点  -->
<#macro deUIActionNode logicNode>
Mosher's avatar
Mosher committed
202 203
        const data = actionContext.defaultParam.getReal();
        const { context, viewparams } = actionContext;
Mosher's avatar
Mosher committed
204
        //  TODO 调用实体界面行为节点
Mosher's avatar
Mosher committed
205 206 207 208 209
</#macro>
<#--  END: 调用实体界面行为节点  -->

<#--  START: 行为处理节点  -->
<#macro deActionNode logicNode>
Mosher's avatar
Mosher committed
210 211 212 213 214
        const dstParam = actionContext.getParam('<#if logicNode.getDstPSDEUILogicParam?? && logicNode.getDstPSDEUILogicParam()??>${logicNode.getDstPSDEUILogicParam().codeName}</#if>');
        if (!Object.is(dstParam.logicParamType, UILogicParamType.entityListParam) && !Object.is(dstParam.logicParamType, UILogicParamType.entityParam)) {
            throw new Error(`实体行为操作参数只能为数据对象变量类型或者数据对象列表类型`);
        }
        const retParam = actionContext.getParam('<#if logicNode.getRetPSDEUILogicParam?? && logicNode.getRetPSDEUILogicParam()??>${logicNode.getRetPSDEUILogicParam().codeName}</#if>');
Mosher's avatar
Mosher committed
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
    <#if logicNode.getDstPSAppDataEntity?? && logicNode.getDstPSAppDataEntity()?? && logicNode.getDstPSAppDEAction?? && logicNode.getDstPSAppDEAction()??>
        if (dstParam) {
            try {
                const service: ${srfclassname('${logicNode.getDstPSAppDataEntity().getCodeName()}')}Service =  = new ${srfclassname('${logicNode.getDstPSAppDataEntity().getCodeName()}')}Service;
                const getTempContext = (data: any) => {
                    const tempContext = Util.deepCopy(actionContext.context);
                    if (data) {
                        Object.assign(tempContext, data);
                    }
                    return tempContext;
                }
                // 数据对象变量类型
                if (Object.is(dstParam.logicParamType, UILogicParamType.entityParam)) {
                    const tempContext = getTempContext(dstParam.getReal());
                    const res = await service['${logicNode.getDstPSAppDEAction().codeName}'](tempContext, dstParam.getReal() ? dstParam.getReal() : {});
                    if (res && res.ok && res.data) {
                        if (retParam) {
                            retParam.bind(res.data);
                        }
                        actionContext.bindLastReturnParam(res.data);
                    } else {
                        throw new Error(`执行实体行为失败`);
                    }
                } else {
                    // 数据对象列表类型
                    if (dstParam.getReal() && (dstParam.getReal().length > 0)) {
                        if (dstParam.getReal().length > 20) {
                            throw new Error(`操作数据量超过20条,建议使用后台处理逻辑`);
                        }
                        let promises: any[] = [];
                        dstParam.getReal().forEach((item: any) => {
                            const tempContext = getTempContext(item);
                            promises.push(service['${logicNode.getDstPSAppDEAction().codeName}'](tempContext, item ? item : {}));
                        })
                        const resArray = await Promise.all(promises);
                        if (resArray && resArray.length > 0) {
                            const resultArray: any[] = [];
                            resArray.forEach((res: any) => {
                                if (res && res.ok && res.data) {
                                    resultArray.push(res.data);
                                }
                            })
                            if (retParam) {
                                retParam.bind(resultArray);
                            }
                            actionContext.bindLastReturnParam(resultArray);
                        } else {
                            throw new Error(`执行实体行为失败`);
                        }
                    } else {
                        if (retParam) {
                            retParam.bind([]);
                        }
                        actionContext.bindLastReturnParam([]);
                    }
                }
            } catch (error: any) {
Mosher's avatar
Mosher committed
272
                <#noparse>throw new Error(`${error.message ? error.message : error.data && error.data.message ? error.data.message : '执行实体行为失败'}`);</#noparse>
Mosher's avatar
Mosher committed
273 274 275 276 277 278 279
            }
        } else {
            throw new Error(`操作参数缺失!`);
        }
    <#else>
        throw new Error(`操作参数缺失!`);
    </#if>
Mosher's avatar
Mosher committed
280 281 282 283 284
</#macro>
<#--  END: 行为处理节点  -->

<#--  START: 实体处理逻辑节点  -->
<#macro deLogicNode logicNode>
Mosher's avatar
Mosher committed
285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309
    <#if logicNode.getDstPSAppDataEntity?? && logicNode.getDstPSAppDataEntity()?? && logicNode.getDstPSAppDELogic?? && logicNode.getDstPSAppDELogic()??>
        const dstParam = actionContext.getParam('<#if logicNode.getDstPSDEUILogicParam?? && logicNode.getDstPSDEUILogicParam()??>${logicNode.getDstPSDEUILogicParam().codeName}</#if>');
        const retParam = actionContext.getParam('<#if logicNode.getDstPSDEUILogicParam?? && logicNode.getDstPSDEUILogicParam()??>${logicNode.getDstPSDEUILogicParam().codeName}</#if>');
        if (dstParam) {
            try {
                const service: ${srfclassname('${logicNode.getDstPSAppDataEntity().getCodeName()}')}Service =  = new ${srfclassname('${logicNode.getDstPSAppDataEntity().getCodeName()}')}Service;
                const result = await service['executeAppDELogic']('${logicNode.getDstPSAppDELogic.codeName}', 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) {
                <#noparse>throw new Error(`调用实体处理逻辑异常${error && error.message ? error.message : ''}`);</#noparse>
            }
        } else {
            throw new Error(`操作参数缺失!`);
        }
    <#else>
        throw new Error(`操作参数缺失!`);
    </#if>
Mosher's avatar
Mosher committed
310 311 312 313 314
</#macro>
<#--  END: 实体处理逻辑节点  -->

<#--  START: 实体数据集节点  -->
<#macro deDataSetNode logicNode>
Mosher's avatar
Mosher committed
315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332
    <#if logicNode.getDstPSAppDataEntity?? && logicNode.getDstPSAppDataEntity()?? && logicNode.getDstPSAppDEDataSet?? && logicNode.getDstPSAppDEDataSet()??>
        const dstParam = actionContext.getParam('<#if logicNode.getDstPSDEUILogicParam?? && logicNode.getDstPSDEUILogicParam()??>${logicNode.getDstPSDEUILogicParam().codeName}</#if>');
        if (!Object.is(dstParam.logicParamType, UILogicParamType.filterParam)) {
            throw new Error(`传入参数 <#if logicNode.getDstPSDEUILogicParam?? && logicNode.getDstPSDEUILogicParam()??>${logicNode.getDstPSDEUILogicParam().codeName}</#if> 类型不正确,必须为过滤器对象`);
        }
        try {
            const service: ${srfclassname('${logicNode.getDstPSAppDataEntity().getCodeName()}')}Service =  = new ${srfclassname('${logicNode.getDstPSAppDataEntity().getCodeName()}')}Service;
            const res = await service['${logicNode.getDstPSAppDEDataSet().codeName}'](actionContext.context, dstParam.getReal() ? dstParam.getReal() : {});
            if (res && res.ok && res.data) {
                // 返回值绑定逻辑参数对象
        <#if logicNode.getRetPSDEUILogicParam?? && logicNode.getRetPSDEUILogicParam()??>
                const retParam = actionContext.getParam('${logicNode.getRetPSDEUILogicParam().codeName}');
                retParam.bind(res.data);
                actionContext.bindLastReturnParam(res.data);
        <#else>
                throw new Error(`查询实体数据集失败`);
        </#if>
        } catch (error: any) {
Mosher's avatar
Mosher committed
333
            <#noparse>throw new Error(`${error.message ? error.message : error.data && error.data.message ? error.data.message : '查询实体数据集失败'}`);</#noparse>
Mosher's avatar
Mosher committed
334 335 336 337
        }
    <#else>
        throw new Error(`操作参数缺失!`);
    </#if>
Mosher's avatar
Mosher committed
338 339 340 341 342
</#macro>
<#--  END: 实体数据集节点  -->

<#--  START: 附加到数组参数节点  -->
<#macro appendParamNode logicNode>
Mosher's avatar
Mosher committed
343 344 345 346 347 348 349 350 351 352 353 354 355 356
        // 源数据
        const srcParam: any = actionContext.getParam('<#if logicNode.getSrcPSDEUILogicParam?? && logicNode.getSrcPSDEUILogicParam()??>${logicNode.getSrcPSDEUILogicParam().codeName}</#if>');
        // 目标数据
        const dstParam: any = actionContext.getParam('<#if logicNode.getDstPSDEUILogicParam?? && logicNode.getDstPSDEUILogicParam()??>${logicNode.getDstPSDEUILogicParam().codeName}</#if>');
        // 源属性
        const srcFieldName: string = '<#if logicNode.getSrcFieldName?? && logicNode.getSrcFieldName()??>${logicNode.getSrcFieldName()?lower_case}</#if>';
        let objParam: any;
        if (srcFieldName) {
            objParam = srcParam.get(srcFieldName);
        } else {
            objParam = srcParam.getReal();
        }
        dstParam.append(${logicNode.getDstIndex()?c}, objParam, ${logicNode.getSrcIndex()?c}, ${logicNode.getSrcSize()?c});
        actionContext.bindLastReturnParam(null);
Mosher's avatar
Mosher committed
357 358 359 360 361
</#macro>
<#--  END: 附加到数组参数节点  -->

<#--  START: 排序数组参数节点  -->
<#macro sortParamNode logicNode>
Mosher's avatar
Mosher committed
362 363 364 365 366
        // 目标数据
        const dstParam: any = actionContext.getParam('<#if logicNode.getDstPSDEUILogicParam?? && logicNode.getDstPSDEUILogicParam()??>${logicNode.getDstPSDEUILogicParam().codeName}</#if>');
        // 目标属性
        const dstFieldName: string = '<#if logicNode.getDstFieldName?? && logicNode.getDstFieldName()??>${logicNode.getDstFieldName()?lower_case}</#if>';
        if (!dstFieldName) {
Mosher's avatar
Mosher committed
367
            throw new Error(`逻辑参数${logicNode.name}未指定设置排序属性`);
Mosher's avatar
Mosher committed
368 369 370
        }
        dstParam.sort(dstFieldName, '${logicNode.getDstSortDir()}');
        actionContext.bindLastReturnParam(null);
Mosher's avatar
Mosher committed
371 372 373 374 375
</#macro>
<#--  END: 排序数组参数节点  -->

<#--  START: 视图部件调用节点  -->
<#macro viewCtrlInvokeNode logicNode>
Mosher's avatar
Mosher committed
376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391
        const invokeCtrl = '<#if logicNode.getInvokeCtrl?? && logicNode.getInvokeCtrl()??>${logicNode.getInvokeCtrl().codeName}</#if>';
        const invokeMethod = '<#if logicNode.getInvokeMethod?? && logicNode.getInvokeMethod()??>${logicNode.getInvokeMethod()}</#if>';
        const invokeParam = '<#if logicNode.getInvokeParam?? && logicNode.getInvokeParam()??>${logicNode.getInvokeParam().codeName}</#if>';
        if (!invokeCtrl || !invokeMethod) {
            throw new Error(`界面对象或者调用方法缺失`);
        }
        const invokeUICtrl = actionContext.getParam(invokeCtrl).getReal();
        if (invokeUICtrl[invokeMethod] && invokeUICtrl[invokeMethod] instanceof Function) {
            try {
                const result = await invokeUICtrl[invokeMethod]();
                if (invokeParam) {
                    actionContext.getParam(invokeParam).bind(result);
                }
                actionContext.bindLastReturnParam(result);
            } catch (error:any) {
                <#noparse>throw new Error(`${invokeCtrl}界面对象调用${invokeMethod}方法发生异常`);</#noparse>
Mosher's avatar
Mosher committed
392
            }
Mosher's avatar
Mosher committed
393 394
        } else {
            <#noparse>throw new Error(`${invokeCtrl}界面对象不存在${invokeMethod}方法`);</#noparse>
Mosher's avatar
Mosher committed
395
        }
Mosher's avatar
Mosher committed
396 397 398 399 400
</#macro>
<#--  END: 视图部件调用节点  -->

<#--  START: 视图部件事件触发节点  -->
<#macro viewCtrlFireEventNode logicNode>
Mosher's avatar
Mosher committed
401
        //  TODO 等待补充
Mosher's avatar
Mosher committed
402 403 404 405 406
</#macro>
<#--  END: 视图部件事件触发节点  -->

<#--  START: 调试逻辑参数节点  -->
<#macro debugParamNode logicNode>
Mosher's avatar
Mosher committed
407
        //  TODO 等待补充
Mosher's avatar
Mosher committed
408 409 410 411 412
</#macro>
<#--  END: 调试逻辑参数节点  -->

<#--  START: 消息弹窗节点  -->
<#macro msgBoxNode logicNode>
Mosher's avatar
Mosher committed
413
        //  TODO 等待补充
Mosher's avatar
Mosher committed
414 415 416 417 418 419 420 421
        return new Promise<void>((resolve: any) => {
            const msgBoxParam: any = actionContext.getParam('<#if logicNode.getMsgBoxParam?? && logicNode.getMsgBoxParam()??>${logicNode.getMsgBoxParam().codeName}</#if>');
            const data = msgBoxParam ? msgBoxParam.getReal() : {};
            const options = {
                type: '${logicNode.getMsgBoxType()}',
                title: data && data.title ? data.title : '<#if logicNode.getTitle()??>${logicNode.getTitle()}<#else>消息</#if>',
                content: data && data.message ? data.message : '${logicNode.getMessage()}',
                buttonType: '${logicNode.getButtonsType()?lower_case}',
Mosher's avatar
Mosher committed
422
                showMode: '<#if logicNode.getShowMode?? && logicNode.getShowMode()??>${logicNode.getShowMode()?lower_case}</#if>',
Mosher's avatar
Mosher committed
423 424 425 426 427 428 429 430 431 432 433 434
                showClose: false,
                mask: true,
                maskClosable: true
            };
            //  TODO 支持具体弹窗
            //  const subject: Subject<any> | null = AppMessageBoxService.getInstance().open(options);
            //  const subscription = subject?.subscribe((result: any) => {
            //      resolve(this.handleResponse(logicNode, actionContext, options, result));
            //      subscription!.unsubscribe();
            //      subject.complete();
            //  })
        });
Mosher's avatar
Mosher committed
435 436 437 438 439
</#macro>
<#--  END: 消息弹窗节点  -->

<#--  START: 前端代码节点  -->
<#macro rawJSCoreNode logicNode>
Mosher's avatar
Mosher committed
440 441 442 443 444 445 446 447
        let data: any = actionContext.defaultParam.getReal();
        let { context } = actionContext;
    <#if logicNode.getCode?? && logicNode.getCode()??>
        eval(`${logicNode.getCode()}`);
    <#else>
        throw new Error('无代码片段');
    </#if>
        actionContext.bindLastReturnParam(null);
Mosher's avatar
Mosher committed
448 449 450 451 452
</#macro>
<#--  END: 前端代码节点  -->

<#--  START: 异常处理节点  -->
<#macro throwExceptionNode logicNode>
Mosher's avatar
Mosher committed
453 454
        actionContext.actionContainer.$throw('<#if logicNode.getErrorInfo?? && logicNode.getErrorInfo()??>${logicNode.getErrorInfo()}</#if>');
        actionContext.bindLastReturnParam(null);
Mosher's avatar
Mosher committed
455 456 457 458 459
</#macro>
<#--  END: 异常处理节点  -->

<#--  START: 结束节点  -->
<#macro endNode logicNode>
Mosher's avatar
Mosher committed
460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476
        const strReturnType: string = '<#if logicNode.getReturnType?? && logicNode.getReturnType()??>${logicNode.getReturnType()}</#if>';
        if (Object.is(strReturnType, LogicReturnType.NONEVALUE) || Object.is(strReturnType, LogicReturnType.NULLVALUE)) {
            actionContext.setResult(null);
        } else if (Object.is(strReturnType, LogicReturnType.SRCVALUE)) {
            actionContext.setResult('<#if logicNode.getRawValue?? && logicNode.getRawValue()??>${logicNode.getRawValue()}</#if>');
        } else if (Object.is(strReturnType, LogicReturnType.BREAK)) {
            actionContext.setResult(LogicReturnType.BREAK);
        } else if (Object.is(strReturnType, LogicReturnType.LOGICPARAM) || Object.is(strReturnType, LogicReturnType.LOGICPARAMFIELD)) {
            const returnParam = actionContext.getParam('<#if logicNode.getReturnParam?? && logicNode.getReturnParam()??>${logicNode.getReturnParam().codeName}</#if>');
            if (Object.is(strReturnType, LogicReturnType.LOGICPARAM)) {
                actionContext.setResult(returnParam.getReal());
            } else {
                actionContext.setResult(returnParam.get('<#if logicNode.getDstFieldName?? && logicNode.getDstFieldName()??>${logicNode.getDstFieldName()}</#if>'));
            }
        } else {
            <#noparse>throw new Error(`无法识别的返回值类型${strReturnType}`);</#noparse>
        }
Mosher's avatar
Mosher committed
477
        console.log('已完成执行 ${logicNode.name} 节点');
Mosher's avatar
Mosher committed
478 479 480 481 482 483 484
</#macro>
<#--  END: 结束节点  -->


<#--  执行节点  -->
<#macro executenode logicNode>
    /**
Mosher's avatar
Mosher committed
485
     * ${logicNode.name}
Mosher's avatar
Mosher committed
486 487 488
     *
     * @param {UIActionContext} actionContext 界面逻辑上下文
     */
Mosher's avatar
Mosher committed
489 490 491 492
    protected async execute_${logicNode.codeName?lower_case}_node(actionContext: UIActionContext) {
        //  <#if item?? && item.name??>${item.name}</#if>
        <#if logicNode.getLogicNodeType() == 'BEGIN'>
        <#--  开始节点  -->
Mosher's avatar
Mosher committed
493
            <@beginNode logicNode/>
Mosher's avatar
Mosher committed
494 495
        <#elseif logicNode.getLogicNodeType() == 'PREPAREJSPARAM'>
        <#--  准备参数节点  -->
Mosher's avatar
Mosher committed
496
            <@prepareParamNode logicNode/>
Mosher's avatar
Mosher committed
497 498
        <#elseif logicNode.getLogicNodeType() == 'RESETPARAM'>
        <#--  重置参数节点  -->
Mosher's avatar
Mosher committed
499
            <@resetParamNode logicNode/>
Mosher's avatar
Mosher committed
500 501
        <#elseif logicNode.getLogicNodeType() == 'COPYPARAM'>
        <#--  拷贝参数节点  -->
Mosher's avatar
Mosher committed
502
            <@copyParamNode logicNode/>
Mosher's avatar
Mosher committed
503 504
        <#elseif logicNode.getLogicNodeType() == 'BINDPARAM'>
        <#--  绑定参数节点  -->
Mosher's avatar
Mosher committed
505
            <@bindParamNode logicNode/>
Mosher's avatar
Mosher committed
506 507
        <#elseif logicNode.getLogicNodeType() == 'RENEWPARAM'>
        <#--  重新建立参数节点  -->
Mosher's avatar
Mosher committed
508
            <@renewParamNode logicNode/>
Mosher's avatar
Mosher committed
509 510
        <#elseif logicNode.getLogicNodeType() == 'DEUIACTION'>
        <#--  调用实体界面行为节点  -->
Mosher's avatar
Mosher committed
511
            <@deUIActionNode logicNode/>
Mosher's avatar
Mosher committed
512 513
        <#elseif logicNode.getLogicNodeType() == 'DEACTION'>
        <#--  行为处理节点  -->
Mosher's avatar
Mosher committed
514
            <@deActionNode logicNode/>
Mosher's avatar
Mosher committed
515 516
        <#elseif logicNode.getLogicNodeType() == 'DELOGIC'>
        <#--  实体处理逻辑节点  -->
Mosher's avatar
Mosher committed
517
            <@deLogicNode logicNode/>
Mosher's avatar
Mosher committed
518 519
        <#elseif logicNode.getLogicNodeType() == 'DEDATASET'>
        <#--  实体数据集节点  -->
Mosher's avatar
Mosher committed
520
            <@deDataSetNode logicNode/>
Mosher's avatar
Mosher committed
521 522
        <#elseif logicNode.getLogicNodeType() == 'APPENDPARAM'>
        <#--  附加到数组参数节点  -->
Mosher's avatar
Mosher committed
523
            <@appendParamNode logicNode/>
Mosher's avatar
Mosher committed
524 525
        <#elseif logicNode.getLogicNodeType() == 'SORTPARAM'>
        <#--  排序数组参数节点  -->
Mosher's avatar
Mosher committed
526
            <@sortParamNode logicNode/>
Mosher's avatar
Mosher committed
527 528
        <#elseif logicNode.getLogicNodeType() == 'VIEWCTRLINVOKE'>
        <#--  视图部件调用节点  -->
Mosher's avatar
Mosher committed
529
            <@viewCtrlInvokeNode logicNode/>
Mosher's avatar
Mosher committed
530 531
        <#elseif logicNode.getLogicNodeType() == 'VIEWCTRLFIREEVENT'>
        <#--  视图部件事件触发节点  -->
Mosher's avatar
Mosher committed
532
            <@viewCtrlFireEventNode logicNode/>
Mosher's avatar
Mosher committed
533 534
        <#elseif logicNode.getLogicNodeType() == 'DEBUGPARAM'>
        <#--  调试逻辑参数节点  -->
Mosher's avatar
Mosher committed
535
            <@debugParamNode logicNode/>
Mosher's avatar
Mosher committed
536 537
        <#elseif logicNode.getLogicNodeType() == 'MSGBOX'>
        <#--  消息弹窗节点  -->
Mosher's avatar
Mosher committed
538
            <@msgBoxNode logicNode/>
Mosher's avatar
Mosher committed
539 540
        <#elseif logicNode.getLogicNodeType() == 'RAWJSCODE'>
        <#--  前端代码节点  -->
Mosher's avatar
Mosher committed
541
            <@rawJSCoreNode logicNode/>
Mosher's avatar
Mosher committed
542 543
        <#elseif logicNode.getLogicNodeType() == 'THROWEXCEPTION'>
        <#--  异常处理节点  -->
Mosher's avatar
Mosher committed
544
            <@throwExceptionNode logicNode/>
Mosher's avatar
Mosher committed
545 546
        <#elseif logicNode.getLogicNodeType() == 'END'>
        <#--  结束节点  -->
Mosher's avatar
Mosher committed
547
            <@endNode logicNode/>
Mosher's avatar
Mosher committed
548
        <#else>
Mosher's avatar
Mosher committed
549
            console.log('${logicNode.getLogicNodeType()}暂未支持');
Mosher's avatar
Mosher committed
550
        </#if>
Mosher's avatar
Mosher committed
551
            console.log('已完成执行 ${logicNode.name} 节点');
Mosher's avatar
Mosher committed
552
            <@computeNextNode logicNode/>
Mosher's avatar
Mosher committed
553
    }
Mosher's avatar
Mosher committed
554
</#macro>