app-dashboard-base.tsx 8.3 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 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 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 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 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
import { Emit, Prop, Watch } from 'vue-property-decorator';
import { throttle, LayoutTool, Util } from 'ibiz-core';
import { DashboardControlBase } from '../../../widgets';
import { IPSDBPortletPart, IPSLanguageRes } from '@ibiz/dynamic-model-api';

/**
 * 数据看板部件基类
 *
 * @export
 * @class AppDashboardBase
 * @extends {DashboardControlBase}
 */
export class AppDashboardBase extends DashboardControlBase {
    /**
     * 部件动态参数
     *
     * @memberof AppDashboardBase
     */
    @Prop() public dynamicProps!: any;

    /**
     * 部件静态参数
     *
     * @memberof AppDashboardBase
     */
    @Prop() public staticProps!: any;

    /**
     * 监听部件动态参数变化
     *
     * @param {*} newVal
     * @param {*} oldVal
     * @memberof AppDashboardBase
     */
    @Watch('dynamicProps', {
        immediate: true,
    })
    public onDynamicPropsChange(newVal: any, oldVal: any) {
        if (newVal && !Util.isFieldsSame(newVal, oldVal)) {
            super.onDynamicPropsChange(newVal, oldVal);
        }
    }

    /**
     * 监听部件静态参数变化
     *
     * @param {*} newVal
     * @param {*} oldVal
     * @memberof AppDashboardBase
     */
    @Watch('staticProps', {
        immediate: true,
    })
    public onStaticPropsChange(newVal: any, oldVal: any) {
        if (newVal && !Util.isFieldsSame(newVal, oldVal)) {
            super.onStaticPropsChange(newVal, oldVal);
        }
    }

    /**
     * 销毁视图回调
     *
     * @memberof AppDashboardBase
     */
    public destroyed() {
        this.ctrlDestroyed();
    }

    /**
     * 部件事件
     *
     * @param {{ controlname: string; action: string; data: any }} { controlname 部件名称, action 事件名称, data 事件参数 }
     * @memberof AppDashboardBase
     */
    @Emit('ctrl-event')
    public ctrlEvent({ controlname, action, data }: { controlname: string; action: string; data: any }): void {}

    /**
     * 绘制门户部件内容
     *
     * @param {IPSDBPortletPart} modelJson
     * @memberof AppDashboardBase
     */
    public renderPortletContent(modelJson: IPSDBPortletPart, index?: number) {
        if (!modelJson) {
            return;
        }
        if (modelJson.portletType == 'CONTAINER') {
            // 绘制门户部件(容器)
            const childPortlets = modelJson.getPSControls();
            let isShowTitle = !!(modelJson.showTitleBar && modelJson.title);
            const controlClassNames: any = {
                [Util.srfFilePath2(modelJson.codeName)]: true,
            };
            if (modelJson.getPSSysCss?.()?.cssName) {
                Object.assign(controlClassNames, { [modelJson.getPSSysCss()?.cssName || '']: true });
            }
            let labelCaption: any = this.$tl((modelJson.getTitlePSLanguageRes() as IPSLanguageRes)?.lanResTag, modelJson.title);
            return (
                <div class={{'app-control-dashboard__portlet': true, 'have-control': childPortlets}}>
                    {isShowTitle && [
                        <div class="app-control-dashboard__portlet__header">
                            {labelCaption}
                        </div>,
                    ]}
                    <div class={{ 'app-control-dashboard__portlet__content': true, ...controlClassNames }}>
                        {this.renderPortlets(modelJson)}
                    </div>
                </div>
            );
        } else {
            let { targetCtrlName, targetCtrlParam, targetCtrlEvent } = this.computeTargetCtrlData(modelJson);
            Object.assign(targetCtrlParam.dynamicProps, { ...this.dynamicProps });
            Object.assign(targetCtrlParam.staticProps, { ...this.staticProps, noPadding: true });
            // 绘制门户部件(非容器)
            return this.$createElement(targetCtrlName, {
                props: targetCtrlParam,
                ref: modelJson.name,
                on: targetCtrlEvent,
            });
        }
    }

    /**
     * 绘制门户部件布局
     *
     * @memberof AppDashboardBase
     */
    public renderPortlets(modelJson: any, isRoot: boolean = false) {
        if (!modelJson) {
            return;
        }
        const layout = modelJson.getPSLayout?.()?.layout;
        if (!layout) {
            return this.renderPortletContent(modelJson);
        }
        // 栅格布局
        if (layout == 'TABLE_24COL' || layout == 'TABLE_12COL') {
            return (
                <row class={{"control-content": true, "no-padding": this.noPadding, "app-control-dashboard__parent": true, "app-control-dashboard__root": isRoot}}>
                    {modelJson.getPSControls?.()?.map((item: any, index: number) => {
                        let attrs = LayoutTool.getGridOptions(item.getPSLayoutPos());
                        return <i-col {...{ props: attrs }} class={{'app-control-dashboard__item': true}}>{this.renderPortletContent(item, index)}</i-col>;
                    })}
                </row>
            );
        }

        // FLEX布局
        if (layout == 'FLEX') {
            const flexStyle = LayoutTool.getFlexStyle(modelJson.getPSLayout?.());
            return (
                <div class={{"control-content": true, "no-padding": this.noPadding, "app-control-dashboard__parent": true,  "app-control-dashboard__root": isRoot}} style={flexStyle}>
                    {modelJson.getPSControls?.()?.map((item: any, index: number) => {
                        let detailStyle = LayoutTool.getFlexStyle2(item.getPSLayoutPos());
                        return <div style={detailStyle} class={{'app-control-dashboard__item': true}}>{this.renderPortletContent(item, index)}</div>;
                    })}
                </div>
            );
        }
    }

    /**
     * 绘制静态布局内容
     *
     * @returns
     * @memberof AppDashboardBase
     */
    public renderStaticDashboard(): any {
        return this.renderPortlets(this.controlInstance, true);
    }

    /**
     * 绘制自定义门户部件
     *
     * @param {*} item
     * @returns
     * @memberof AppDashboardBase
     */
    public renderCustomPortlet(customModel: any) {
        let { targetCtrlName, targetCtrlParam, targetCtrlEvent } = this.computeTargetCtrlData(customModel.modelData);
        Object.assign(targetCtrlParam.dynamicProps, { isAdaptiveSize: true });
        return this.$createElement(targetCtrlName, {
            key: Util.createUUID(),
            props: targetCtrlParam,
            ref: customModel.modelData.name,
            on: targetCtrlEvent,
        });
    }

    /**
     * 绘制动态自定义布局内容
     *
     * @returns
     * @memberof AppDashboardBase
     */
    public renderCustomizedDashboard(): any {
        return (
            <row class="control-content">
                <div class='dashboard__content--custom'>
                    {this.customModelData.map((item: any, index: number) => {
                        let itemStyle = {
                            zIndex: 10,
                            position: 'absolute',
                            height: item.h * this.layoutRowH + 'px',
                            width: `calc(100% / ${this.layoutColNum} * ${item.w})`,
                            top: item.y * this.layoutRowH + 'px',
                            left: `calc(100% / ${this.layoutColNum} * ${item.x})`,
                        };
                        return (
                            <div key={index} style={itemStyle}>
                                {this.renderCustomPortlet(item)}
                            </div>
                        );
                    })}
                </div>
            </row>
        );
    }

    /**
     * 绘制内容
     *
     * @returns
     * @memberof AppDashboardBase
     */
    public render(): any {
        if (!this.controlIsLoaded) {
            return null;
        }
        const { controlClassNames } = this.renderOptions;
        return (
            <div class={controlClassNames}>
                {this.isEnableCustomized && (
                    <row class="app-control-dashboard__build">
                        <app-build on-handleClick={(...params: any[]) => throttle(this.handleClick,params,this)}></app-build>
                    </row>
                )}
                {this.dashboardType == 'default' && this.renderStaticDashboard()}
                {this.dashboardType == 'custom' && this.renderCustomizedDashboard()}
            </div>
        );
    }
}