import { Prop, Provide, Emit, Model } from 'vue-property-decorator'; import { Subject, Subscription } from 'rxjs'; import { Watch, MainControlBase } from '@/studio-core'; import LeadService from '@/service/lead/lead-service'; import LeadInfoService from './lead-info-dashboard-service'; import UtilService from '@/utilservice/util-service'; /** * dashboard部件基类 * * @export * @class MainControlBase * @extends {LeadInfoDashboardBase} */ export class LeadInfoDashboardBase extends MainControlBase { /** * 获取部件类型 * * @protected * @type {string} * @memberof LeadInfoDashboardBase */ protected controlType: string = 'DASHBOARD'; /** * 建构部件服务对象 * * @type {LeadInfoService} * @memberof LeadInfoDashboardBase */ public service: LeadInfoService = new LeadInfoService({ $store: this.$store }); /** * 实体服务对象 * * @type {LeadService} * @memberof LeadInfoDashboardBase */ public appEntityService: LeadService = new LeadService({ $store: this.$store }); /** * 应用实体名称 * * @protected * @type {string} * @memberof LeadInfoDashboardBase */ protected appDeName: string = 'lead'; /** * 是否支持看板定制 * * @public * @type {(boolean)} * @memberof LeadInfo */ @Prop() public isEnableCustomized!:boolean; /** * 是否已有看板定制 * * @public * @type {(boolean)} * @memberof LeadInfo */ public isHasCustomized:boolean = false; /** * 模型数据 * * @public * @type {(*)} * @memberof LeadInfo */ public modelDta:any; /** * modleId * * @type {string} * @memberof LeadInfo */ public modelId:string = "dashboard_lead_leadinfo"; /** * 建构功能服务对象 * * @type {UtilService} * @memberof LeadInfo */ public utilService:UtilService = new UtilService(); /** * 功能服务名称 * * @type {string} * @memberof LeadInfo */ public utilServiceName:string = ""; /** * 获取多项数据 * * @returns {any[]} * @memberof LeadInfo */ public getDatas(): any[] { return []; } /** * 获取单项树 * * @returns {*} * @memberof LeadInfo */ public getData(): any { return {}; } /** * vue 生命周期 * * @memberof LeadInfo */ public created() { this.afterCreated(); } /** * 执行created后的逻辑 * * @memberof LeadInfo */ public afterCreated(){ if (this.viewState) { this.viewStateEvent = this.viewState.subscribe(({ tag, action, data }) => { if (!Object.is(tag, this.name)) { return; } if (Object.is('load', action)) { this.loadModel(); } }); } } /** * 动态设计水平列数 * * @memberof LeadInfo */ public layoutColNum:number = 12; /** * 动态设计单元格高度,80px * * @memberof LeadInfo */ public layoutRowH:number = 80; /** * 通知状态 * * @memberof LeadInfo */ public notifyState(){ this.$nextTick(() =>{ if (this.isHasCustomized) { if (this.modelDta && this.modelDta.length > 0) { this.modelDta.forEach((item: any) => { this.viewState.next({ tag: item.portletCodeName, action: "load", data: JSON.parse(JSON.stringify(this.viewparams)) }); }); } } else { if (this.viewState) { const refs: any = this.$refs; Object.keys(refs).forEach((name: string) => { this.viewState.next({ tag: name, action: "load", data: JSON.parse(JSON.stringify(this.viewparams)) }); }); } } }) } /** * 加载布局与数据模型 * * @memberof LeadInfo */ public loadModel(){ if(this.isEnableCustomized){ this.utilService.getService(this.utilServiceName).then((service:any) =>{ service.loadModelData(JSON.parse(JSON.stringify(this.context)),{modelid:this.modelId,utilServiceName:this.utilServiceName}).then((res:any) =>{ if(res && res.status == 200){ const data:any = res.data; if(data && data.length >0){ this.isHasCustomized = true; this.modelDta = data; this.$forceUpdate(); }else{ this.isHasCustomized = false; } this.notifyState(); }else{ console.error("加载面板模型异常"); this.isHasCustomized = false; this.notifyState(); } }).catch((error:any)=>{ console.error("加载面板模型异常"); console.error(error); this.isHasCustomized = false; this.notifyState(); }); }) }else{ this.notifyState(); } } /** * 处理私人定制按钮 * * @memberof LeadInfo */ public handleClick(){ const view:any ={ viewname: 'app-portal-design', title: '面板设计', width: 1600, placement: 'DRAWER_RIGHT' } const viewparam:any ={ modelid:this.modelId, utilServiceName:this.utilServiceName, appdeName:'Lead' } const appdrawer = this.$appdrawer.openDrawer(view, JSON.parse(JSON.stringify(this.context)), viewparam); appdrawer.subscribe((result: any) => { if(Object.is(result.ret,'OK')){ this.loadModel(); } }); } /** * vue 生命周期 * * @memberof LeadInfo */ public destroyed() { this.afterDestroy(); } /** * 执行destroyed后的逻辑 * * @memberof LeadInfo */ public afterDestroy() { if (this.viewStateEvent) { this.viewStateEvent.unsubscribe(); } } }