import { MDViewBase } from './mdview-base'; import { IndexPickupDataViewInterface, ModelTool } from '@ibizstudio/runtime'; import { IPSAppDEDataView, IPSDEDataView } from '@ibizstudio/runtime'; /** * 索引关系选择视图基类 * * @export * @class IndexPickupDataViewBase * @extends {MDViewBase} * @implements {IndexPickupDataViewInterface} */ export class IndexPickupDataViewBase extends MDViewBase implements IndexPickupDataViewInterface { /** * 实体索引关系选择数据视图(部件视图) * * @type {IBizIndexPickupDataViewModel} * @memberof IndexPickupDataViewBase */ declare viewInstance: IPSAppDEDataView; /** * 数据视图部件实例对象 * * @type {IBizDataViewModel} * @memberof IndexPickupDataViewBase */ private dataviewInstance!: IPSDEDataView; /** * 初始化表单选择数据视图实例 * * @memberof IndexPickupDataViewBase */ async viewModelInit() { this.viewInstance = (this.staticProps?.modeldata) as IPSAppDEDataView; await super.viewModelInit(); this.dataviewInstance = ModelTool.findPSControlByType("DATAVIEW", this.viewInstance.getPSControls()); } /** * 处理部件事件 * * @memberof IndexPickupDataViewBase */ onCtrlEvent(controlname: string, action: string, data: any) { if (Object.is(action, "selectionchange")) { this.$emit('view-event', { action: 'viewdataschange', data: data }); } } /** * 视图挂载 * * @memberof IndexPickupDataViewBase */ viewMounted() { super.viewMounted(); this.viewState.next({ tag: this.dataviewInstance?.name, action: 'load', data: this.viewparams }); } /** * 监听视图动态参数变化 * * @param {*} newVal * @param {*} oldVal * @memberof IndexPickupDataViewBase */ onDynamicPropsChange(newVal: any, oldVal: any) { super.onDynamicPropsChange(newVal, oldVal); } /** * 监听视图静态参数变化 * * @param {*} newVal * @param {*} oldVal * @memberof IndexPickupDataViewBase */ onStaticPropsChange(newVal: any, oldVal: any) { this.isSingleSelect = newVal.isSingleSelect; super.onStaticPropsChange(newVal, oldVal); } /** * 渲染视图主体内容区 * * @memberof IndexPickupDataViewBase */ renderMainContent() { let { targetCtrlName, targetCtrlParam, targetCtrlEvent } = this.computeTargetCtrlData(this.dataviewInstance); return this.$createElement(targetCtrlName, { props: targetCtrlParam, ref: this.dataviewInstance?.name, on: targetCtrlEvent }); } /** * 计算目标部件所需参数 * * @param {string} [controlType] * @returns * @memberof IndexPickupDataViewBase */ computeTargetCtrlData(controlInstance: any) { const { targetCtrlName, targetCtrlParam, targetCtrlEvent } = super.computeTargetCtrlData(controlInstance); Object.assign(targetCtrlParam.staticProps, { isSingleSelect: this.isSingleSelect, }) return { targetCtrlName, targetCtrlParam, targetCtrlEvent }; } }