print-params-ui-logic-base.ts 12.5 KB
Newer Older
1 2 3 4 5 6
import { UIActionContext } from "@/logic/ui-logic";
import { LogicReturnType } from "@/logic/const/logic-return-type";
import { UILogicParamType } from "@/logic/const/ui-logic-param-type";
import { Util, Verify } from "@/utils";
import { AppMessageBox } from "@/utils/app-message-box/app-message-box";
import { Subject } from "rxjs";
7
import { Environment } from "@/environments/environment";
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
/**
 * 输出参数
 *
 * @export
 * @class PrintParamsUILogicBase
 */
export default class PrintParamsUILogicBase {

    /**
     * Creates an instance of  PrintParamsBase.
     * 
     * @param {*} [opts={}]
     * @memberof PrintParamsUILogicBase
     */
    constructor(opts: any = {}) { }

    /**
     * 逻辑参数
     *
     * @protected
     * @type {any[]}
     * @memberof PrintParamsUILogicBase
     */
    protected logicParams: any[] = [
        {
33 34
            name: '输出参数',
            codeName: 'printParam',
35 36 37 38 39 40 41
            entityParam: true,
        },
        {
            name: '应用全局',
            codeName: 'appGlobal',
            appGlobalParam: true,
        },
42
        {
43 44 45 46
            name: '传入变量',
            codeName: 'Default',
            default: true,
            entityParam: true,
47 48 49 50 51 52
        },
        {
            name: '路由视图会话变量',
            codeName: 'routerSession',
            routeViewSessionParam: true,
        },
53 54 55 56 57
        {
            name: '当前视图会话变量',
            codeName: 'currentView',
            viewSessionParam: true,
        },
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
    ];

    /**
     * 执行前
     *
     * @param {*} args
     * @param {*} [context={}]
     * @param {*} [params={}]
     * @param {*} [$event]
     * @param {*} [xData]
     * @param {*} [actioncontext]
     * @param {string} [srfParentDeName]
     * @return {*} 
     * @memberof PrintParamsUILogicBase
     */
    public beforeExecute(args: any, context: any = {}, params: any = {},
        $event?: any, xData?: any, actioncontext?: any, srfParentDeName?: string) {
        return new UIActionContext(this.logicParams, args, context, params, $event, xData, actioncontext, srfParentDeName)
    }

    /**
     * 执行
     *
     * @param {any[]} args
     * @param {*} [context={}]
     * @param {*} [params={}]
     * @param {*} [$event]
     * @param {*} [xData]
     * @param {*} [actionContext]
     * @param {string} [srfParentDeName]
     * @memberof PrintParamsUILogicBase
     */
    async execute(args: any[], context:any = {} ,params: any = {}, $event?: any, xData?: any, actioncontext?: any, srfParentDeName?: string) {
        try {
            const actionContext = this.beforeExecute(args, context, params, $event, xData, actioncontext, srfParentDeName);
            await this.execute_begin_node(actionContext);
            return actionContext.getResult();
        } catch (error: any) {
            throw new Error(`${error && error.message ? error.message : '发生未知错误!'}`);
        }
    }

    /**
     * 获取条件参数
     *
     * @param {UIActionContext} actionContext 界面逻辑上下文
     * @param {string} param 节点参数
     * @param {string} property 参数属性
     * @return {*} 
     * @memberof PrintParamsUILogicBase
     */
    public getCondParam(actionContext: UIActionContext, param: string, property: string) {
        const resultParam = actionContext.getParam(param).getReal();
        //  当不存在参数属性时,返回直接值
        if (property === '') {
            return resultParam;
        }
        if (resultParam && resultParam.hasOwnProperty(property)) {
            return resultParam[property];
        }
        return null;
    }

    /**
     * 开始
     *
     * @param {UIActionContext} actionContext 界面逻辑上下文
     * @memberof PrintParamsUILogicBase
     */
    protected async execute_begin_node(actionContext: UIActionContext) {
        actionContext.setResult(actionContext.defaultParam.getReal());
        console.log('已完成执行 开始 节点');
        await this.execute_preparejsparam1_node(actionContext);
    }
    
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
    /**
     * 调试逻辑参数
     *
     * @param {UIActionContext} actionContext 界面逻辑上下文
     * @memberof PrintParamsUILogicBase
     */
    protected async execute_debugparam4_node(actionContext: UIActionContext) {
        const dstParamValue = actionContext.getParam('appGlobal').getReal();
        actionContext.bindLastReturnParam(null);
        console.log('逻辑节点 调试逻辑参数 操作参数值: ', dstParamValue);
        console.log('已完成执行 调试逻辑参数 节点');
        await this.execute_preparejsparam4_node(actionContext);
    }
    
    /**
     * 结束
     *
     * @param {UIActionContext} actionContext 界面逻辑上下文
     * @memberof PrintParamsUILogicBase
     */
    protected async execute_end1_node(actionContext: UIActionContext) {
        const strReturnType: string = 'NONEVALUE';
        if (Object.is(strReturnType, LogicReturnType.NONEVALUE) || Object.is(strReturnType, LogicReturnType.NULLVALUE)) {
            actionContext.setResult(null);
        } else if (Object.is(strReturnType, LogicReturnType.SRCVALUE)) {
            actionContext.setResult('');
        } 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 (Object.is(strReturnType, LogicReturnType.LOGICPARAM)) {
                actionContext.setResult(returnParam.getReal());
            } else {
                actionContext.setResult(returnParam.get(''));
            }
        } else {
            throw new Error(`无法识别的返回值类型${strReturnType}`);
        }
        console.log('已完成执行 结束 节点');
    }
    
    /**
     * 设置testParam
     *
     * @param {UIActionContext} actionContext 界面逻辑上下文
     * @memberof PrintParamsUILogicBase
     */
    protected async execute_preparejsparam1_node(actionContext: UIActionContext) {
        try {
            //  目标数据
            const dstParam_1: any = actionContext.getParam('appGlobal');
            //  无值类型
185
            //  直接值
186 187 188 189 190 191 192 193 194
            const result_1 = '121';
            dstParam_1.set('testparam', result_1);
        } catch (error: any) {
            throw new Error(`逻辑节点 设置testParam ${error && error.message ? error.message : '发生未知错误!'}`);
        }
        console.log('已完成执行 设置testParam 节点');
        await this.execute_debugparam1_node(actionContext);
    }
    
195 196 197 198 199 200 201 202 203 204 205
    /**
     * 获取全局testParam
     *
     * @param {UIActionContext} actionContext 界面逻辑上下文
     * @memberof PrintParamsUILogicBase
     */
    protected async execute_preparejsparam2_node(actionContext: UIActionContext) {
        try {
            //  目标数据
            const dstParam_1: any = actionContext.getParam('routerSession');
            //  无值类型
206
            //  源逻辑参数、网页请求上下文、当前视图参数
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
            const srcParam_1 = actionContext.getParam('appGlobal');
            const result_1 = srcParam_1.get('testparam') ? srcParam_1.get('testparam') : null;
            dstParam_1.set('appglobalparam', result_1);
        } catch (error: any) {
            throw new Error(`逻辑节点 获取全局testParam ${error && error.message ? error.message : '发生未知错误!'}`);
        }
        console.log('已完成执行 获取全局testParam 节点');
        await this.execute_debugparam2_node(actionContext);
    }
    
    /**
     * 调试逻辑参数
     *
     * @param {UIActionContext} actionContext 界面逻辑上下文
     * @memberof PrintParamsUILogicBase
     */
223 224
    protected async execute_debugparam2_node(actionContext: UIActionContext) {
        const dstParamValue = actionContext.getParam('routerSession').getReal();
225 226 227
        actionContext.bindLastReturnParam(null);
        console.log('逻辑节点 调试逻辑参数 操作参数值: ', dstParamValue);
        console.log('已完成执行 调试逻辑参数 节点');
228
        await this.execute_preparejsparam3_node(actionContext);
229 230 231 232 233 234 235 236
    }
    
    /**
     * 调试逻辑参数
     *
     * @param {UIActionContext} actionContext 界面逻辑上下文
     * @memberof PrintParamsUILogicBase
     */
237 238
    protected async execute_debugparam3_node(actionContext: UIActionContext) {
        const dstParamValue = actionContext.getParam('currentView').getReal();
239 240 241
        actionContext.bindLastReturnParam(null);
        console.log('逻辑节点 调试逻辑参数 操作参数值: ', dstParamValue);
        console.log('已完成执行 调试逻辑参数 节点');
242
        await this.execute_resetparam1_node(actionContext);
243 244 245
    }
    
    /**
246
     * 调试逻辑参数
247 248 249 250
     *
     * @param {UIActionContext} actionContext 界面逻辑上下文
     * @memberof PrintParamsUILogicBase
     */
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
    protected async execute_debugparam5_node(actionContext: UIActionContext) {
        const dstParamValue = actionContext.getParam('printParam').getReal();
        actionContext.bindLastReturnParam(null);
        console.log('逻辑节点 调试逻辑参数 操作参数值: ', dstParamValue);
        console.log('已完成执行 调试逻辑参数 节点');
        await this.execute_end1_node(actionContext);
    }
    
    /**
     * 调试逻辑参数
     *
     * @param {UIActionContext} actionContext 界面逻辑上下文
     * @memberof PrintParamsUILogicBase
     */
    protected async execute_debugparam1_node(actionContext: UIActionContext) {
        const dstParamValue = actionContext.getParam('appGlobal').getReal();
        actionContext.bindLastReturnParam(null);
        console.log('逻辑节点 调试逻辑参数 操作参数值: ', dstParamValue);
        console.log('已完成执行 调试逻辑参数 节点');
        await this.execute_preparejsparam2_node(actionContext);
271 272
    }
    
273 274 275 276 277 278 279 280 281 282 283 284 285 286
    /**
     * 重置参数
     *
     * @param {UIActionContext} actionContext 界面逻辑上下文
     * @memberof PrintParamsUILogicBase
     */
    protected async execute_resetparam1_node(actionContext: UIActionContext) {
        const dstParam: any = actionContext.getParam('appGlobal');
        dstParam.resetAll();
        actionContext.bindLastReturnParam(null);
        console.log('已完成执行 重置参数 节点');
        await this.execute_debugparam4_node(actionContext);
    }
    
287
    /**
288
     * 获取应用名称
289 290 291 292
     *
     * @param {UIActionContext} actionContext 界面逻辑上下文
     * @memberof PrintParamsUILogicBase
     */
293
    protected async execute_preparejsparam4_node(actionContext: UIActionContext) {
294 295
        try {
            //  目标数据
296
            const dstParam_1: any = actionContext.getParam('printParam');
297
            //  无值类型
298 299
            //  环境参数
            const result_1 = Environment['AppName'];
300
            dstParam_1.set('envparam', result_1);
301
        } catch (error: any) {
302
            throw new Error(`逻辑节点 获取应用名称 ${error && error.message ? error.message : '发生未知错误!'}`);
303
        }
304 305
        console.log('已完成执行 获取应用名称 节点');
        await this.execute_debugparam5_node(actionContext);
306 307
    }
    
308 309 310 311 312 313 314 315 316 317 318
    /**
     * 获取路由参数
     *
     * @param {UIActionContext} actionContext 界面逻辑上下文
     * @memberof PrintParamsUILogicBase
     */
    protected async execute_preparejsparam3_node(actionContext: UIActionContext) {
        try {
            //  目标数据
            const dstParam_1: any = actionContext.getParam('currentView');
            //  无值类型
319
            //  源逻辑参数、网页请求上下文、当前视图参数
320 321 322 323 324 325 326 327 328 329
            const srcParam_1 = actionContext.getParam('routerSession');
            const result_1 = srcParam_1.get('testparam') ? srcParam_1.get('testparam') : null;
            dstParam_1.set('testccc', result_1);
        } catch (error: any) {
            throw new Error(`逻辑节点 获取路由参数 ${error && error.message ? error.message : '发生未知错误!'}`);
        }
        console.log('已完成执行 获取路由参数 节点');
        await this.execute_debugparam3_node(actionContext);
    }
    
330 331

}