calendarexpview-base.tsx 2.4 KB
Newer Older
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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
import { IPSAppDECalendarExplorerView, IPSCalendarExpBar } from '@ibiz/dynamic-model-api';
import { CalendarExpViewEngine, CalendarExpViewInterface, ModelTool } from 'ibiz-core';
import { ExpViewBase } from './expview-base';


/**
 * 日历导航视图基类
 *
 * @export
 * @class CalendarExpViewBase
 * @extends {ExpViewBase}
 * @implements {CalendarExpViewInterface}
 */
export class CalendarExpViewBase extends ExpViewBase implements CalendarExpViewInterface {

    /**
     * 视图实例
     * 
     * @memberof CalendarExpViewBase
     */
    public declare viewInstance: IPSAppDECalendarExplorerView;

    /**
     * 导航栏实例
     * 
     * @memberof CalendarExpViewBase
     */
    public declare expBarInstance: IPSCalendarExpBar;

    /**
     * 视图引擎
     *
     * @public
     * @type {Engine}
     * @memberof CalendarExpViewBase
     */
    public declare engine: CalendarExpViewEngine;

    /**
     * 引擎初始化
     *
     * @public
     * @memberof CalendarExpViewBase
     */
    public engineInit(): void {
        if (this.Environment && this.Environment.isPreviewMode) {
            return;
        }
        let engineOpts = ({
            view: this,
            p2k: '0',
            calendarexpbar: (this.$refs[this.expBarInstance.name] as any).ctrl,
            keyPSDEField: this.appDeCodeName.toLowerCase(),
            majorPSDEField: this.appDeMajorFieldName.toLowerCase(),
            isLoadDefault: this.viewInstance.loadDefault,
        });
        this.engine.init(engineOpts);
    }

    /**
     * 初始化实体日历导航视图实例
     * 
     * @memberof CalendarExpViewBase
     */
    public async viewModelInit() {
        this.viewInstance = (this.staticProps?.modeldata) as IPSAppDECalendarExplorerView;
        await super.viewModelInit();
        this.expBarInstance = ModelTool.findPSControlByType('CALENDAREXPBAR', this.viewInstance.getPSControls() || []);
    }

    /**
     * 处理占位比例变化
     *
     * @protected
     * @memberof CalendarExpViewBase
     */
    protected handleSplitChange() {
        if (this.split) {
            this.$store.commit("setViewSplit", { viewUID: `${this.viewInstance?.codeName}_${this.expBarInstance?.codeName}`, viewSplit: this.split });
            if (this.viewState && this.expBarInstance) {
                this.viewState.next({ tag: this.expBarInstance.name, action: 'updateSize', data: null });
            }
        }
    }

}