import { IPSAppDataEntity, IPSAppDEChartView, IPSAppDEField, IPSDEChart } from '@ibizstudio/runtime'; import { ChartViewEngine, ModelTool, ChartViewInterface } from '@ibizstudio/runtime'; import { MDViewBase } from './mdview-base'; /** * 图表视图基类 * * @export * @class ChartViewBase * @extends {MDViewBase} * @implements {ChartViewInterface} */ export class ChartViewBase extends MDViewBase implements ChartViewInterface { /** * 视图实例 * * @memberof ChartViewBase */ declare viewInstance: IPSAppDEChartView; /** * 图表实例 * * @memberof ChartViewBase */ chartInstance!: IPSDEChart; /** * 视图引擎 * * @public * @type {ChartViewEngine} * @memberof ChartViewBase */ engine: ChartViewEngine = new ChartViewEngine(); /** * 引擎初始化 * * @param {*} [opts={}] 引擎参数 * @memberof ChartViewBase */ engineInit(opts: any = {}): void { if (this.Environment && this.Environment.isPreviewMode) { return; } if (this.engine && this.chartInstance) { let engineOpts = Object.assign({ view: this, parentContainer: this.$parent, p2k: '0', // todo loadDefault 返回undefined isLoadDefault: this.viewInstance.loadDefault !== false ? true : false, keyPSDEField: (ModelTool.getViewAppEntityCodeName(this.viewInstance) as string).toLowerCase(), majorPSDEField: (ModelTool.getAppEntityMajorField(this.viewInstance.getPSAppDataEntity() as IPSAppDataEntity) as IPSAppDEField)?.codeName.toLowerCase(), opendata: (args: any[], fullargs?: any[], params?: any, $event?: any, xData?: any) => { this.opendata(args, fullargs, params, $event, xData); }, newdata: (args: any[], fullargs?: any[], params?: any, $event?: any, xData?: any) => { this.newdata(args, fullargs, params, $event, xData); }, chart: (this.$refs[this.chartInstance.name] as any).ctrl, }, opts) if (this.searchFormInstance?.name && this.$refs[this.searchFormInstance.name]) { engineOpts.searchform = ((this.$refs[this.searchFormInstance.name] as any).ctrl); } else if (this.quickSearchFormInstance?.name && this.$refs[this.quickSearchFormInstance.name]) { engineOpts.searchform = ((this.$refs[this.quickSearchFormInstance.name] as any).ctrl); } if (this.searchBarInstance?.name && this.$refs[this.searchBarInstance.name]) { engineOpts.searchbar = ((this.$refs[this.searchBarInstance.name] as any).ctrl); } this.engine.init(engineOpts); } } /** * 初始化图表视图实例 * * @param opts * @memberof ChartViewBase */ async viewModelInit() { // 填充图表视图实体 await this.viewInstance.getPSAppDataEntity()?.fill(); await super.viewModelInit(); this.chartInstance = ModelTool.findPSControlByName('chart', this.viewInstance.getPSControls()) as IPSDEChart; } /** * 渲染视图主体内容区 * * @returns * @memberof ChartViewBase */ renderMainContent() { let { targetCtrlName, targetCtrlParam, targetCtrlEvent }: { targetCtrlName: string, targetCtrlParam: any, targetCtrlEvent: any } = this.computeTargetCtrlData(this.chartInstance); return this.$createElement(targetCtrlName, { props: targetCtrlParam, ref: this.chartInstance?.name, on: targetCtrlEvent }); } /** * 快速搜索 * * @param {*} $event * @memberof ChartViewBase */ onSearch($event: any): void { const refs: any = this.$refs[this.chartInstance?.name]; if (refs && refs.$refs?.ctrl) { refs.$refs.ctrl.refresh({}); } } }