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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
import { IPSAppPortlet, IPSDEDashboard } from "@ibiz/dynamic-model-api";
import { AppServiceBase, DashboardControlInterface, LogUtil, ModelTool, Util, UtilServiceHelp } from "ibiz-core";
import { Subscription } from "rxjs";
import { MainControlBase } from "./main-control-base";
/**
* 数据看板部件基类
*
* @export
* @class ControlBase
* @extends {DashboardControlBase}
*/
export class DashboardControlBase extends MainControlBase implements DashboardControlInterface {
/**
* 部件模型实例对象
*
* @type {IPSDEDashboard}
* @memberof DashboardControlBase
*/
public declare controlInstance: IPSDEDashboard;
/**
* 是否支持看板定制
*
* @public
* @type {(boolean)}
* @memberof DashboardControlBase
*/
public isEnableCustomized!: boolean;
/**
* 是否支持搜索
*
* @public
* @type {(boolean)}
* @memberof DashboardControlBase
*/
public isSearchMode: boolean = false;
/**
* 看板定制状态描述
*
* @type {string} unknown 未确定, default 默认, custom 自定义
* @memberof DashboardControlBase
*/
public dashboardType: string = 'unknown';
/**
* 自定义模型数据
*
* @public
* @type {(*)}
* @memberof DashboardControlBase
*/
public customModelData: any;
/**
* modleId
*
* @type {string}
* @memberof DashboardControlBase
*/
public modelId: string = "";
/**
* 功能服务名称
*
* @type {string}
* @memberof DashboardControlBase
*/
public utilServiceName: string = "dynadashboard";
/**
* 动态设计水平列数
*
* @memberof DashboardControlBase
*/
public layoutColNum: number = 12;
/**
* 动态设计单元格高度,80px
*
* @memberof DashboardControlBase
*/
public layoutRowH: number = 80;
/**
* 所有的门户部件实例集合
*
* @type {*}
* @memberof DashboardControlBase
*/
public portletList: any = [];
/**
* @description 数据看板部件事件
* @type {(Subscription | undefined)}
* @memberof DashboardControlBase
*/
public dashboardControlEvent: Subscription | undefined;
/**
* @description 数据看板抽屉事件
* @type {(Subscription | undefined)}
* @memberof DashboardControlBase
*/
public dashboardDrawerEvent: Subscription | undefined;
/**
* 看板初始化时
*
* @memberof DashboardControlBase
*/
public initMountedMap() {
this.mountedMap.set('self', false);
}
/**
* 初始化挂载状态集合(默认看板时)
*
* @memberof ControlBase
*/
public initStaticMountedMap() {
let controls = ModelTool.getAllPortlets(this.controlInstance);
controls?.forEach((item: any) => {
if (!(item.controlType == "PORTLET" && item.portletType == "CONTAINER")) {
this.mountedMap.set(item.name, false);
}
})
}
/**
* 初始化挂载状态集合(自定义动态看板时)
*
* @memberof ControlBase
*/
public initDynamicMountedMap() {
this.mountedMap.clear();
this.customModelData.forEach((item: any) => {
let portlet = item.modelData;
this.mountedMap.set(portlet.name, false)
})
}
/**
* 设置已经绘制完成状态
*
* @memberof ControlBase
*/
public setIsMounted(name: string = 'self') {
super.setIsMounted(name);
if (([...this.mountedMap.values()].indexOf(false) == -1) && (this.mountedMap.size > 1)) {
// 执行通知方法
if (!this.isSearchMode) {
this.$nextTick(() => {
this.notifyState(this.viewparams);
})
}
}
}
/**
* 初始化数据看板部件实例
*
* @memberof AppDefaultDashboard
*/
public async ctrlModelInit(opts: any) {
await super.ctrlModelInit();
this.isEnableCustomized = this.controlInstance.enableCustomized;
const { codeName } = this.controlInstance;
this.modelId = `dashboard_${this.appDeCodeName.toLowerCase() || 'app'}_${codeName?.toLowerCase()}`;
if (this.isEnableCustomized) {
await this.loadPortletList();
}
}
/**
* 加载门户部件集合
*
* @memberof AppDashboardDesignService
*/
public async loadPortletList(): Promise<any> {
const app = AppServiceBase.getInstance().getAppModelDataObject();
let list: any = [];
if (app.getAllPSAppPortlets?.()?.length) {
for (const portlet of app.getAllPSAppPortlets() as IPSAppPortlet[]) {
// 门户部件实例
const portletInstance = portlet.getPSControl()
let temp: any = {
portletCodeName: portlet.codeName,
modelData: portletInstance,
}
list.push(temp);
}
}
this.portletList = list;
}
/**
* 获取门户部件实例
*
* @param {*} layoutModel
* @returns
* @memberof DashboardControlBase
*/
public getPortletInstance(layoutModel: any) {
return this.portletList.find((item: any) => { return layoutModel.i === item.portletCodeName })?.modelData;
}
/**
* 部件初始化
*
* @param {*} [args]
* @memberof DashboardControlBase
*/
public ctrlInit(args?: any) {
super.ctrlInit(args);
if (this.viewState) {
this.dashboardControlEvent = this.viewState.subscribe(({ tag, action, data }: any) => {
if (!Object.is(tag, this.name)) {
return;
}
if (Object.is('load', action)) {
this.isSearchMode = data.isSearchMode;
this.loadModel();
}
if (Object.is('loaddata', action)) {
this.notifyState(data);
}
});
}
}
/**
* 部件挂载
*
* @memberof DashboardControlBase
*/
public ctrlMounted(args?: any) {
super.ctrlMounted(args);
// 不支持自定义时为默认看板
if (!this.isEnableCustomized) {
this.dashboardType = 'default';
}
}
/**
* 通知状态
*
* @memberof DashboardControlBase
*/
public notifyState(data: any) {
setTimeout(() => {
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(data))
});
});
}
}, 0);
}
/**
* 加载布局与数据模型
*
* @memberof DashboardControlBase
*/
public async loadModel() {
try {
if (this.isEnableCustomized) {
let service = await UtilServiceHelp.getInstance().getService(this.context, this.utilServiceName);
let res = await service.loadModelData(JSON.parse(JSON.stringify(this.context)), { modelid: this.modelId, utilServiceName: this.utilServiceName });
if (res && res.status == 200) {
const data: any = res.data;
if (data && data.length > 0) {
for (const model of data) {
model.modelData = this.getPortletInstance(model);
}
this.customModelData = data;
this.initDynamicMountedMap();
this.dashboardType = 'custom';
this.$forceUpdate();
} else {
throw new Error(this.$t('app.dashboard.dataerror') as string);
}
} else {
throw new Error(this.$t('app.dashboard.serviceerror') as string);
}
} else {
this.initStaticMountedMap();
}
} catch (error) {
LogUtil.warn(this.$t('app.dashboard.loaderror') + error);
this.initStaticMountedMap();
this.dashboardType = "default";
}
}
/**
* 处理私人定制按钮
*
* @memberof DashboardControlBase
*/
public handleClick() {
const view: any = {
viewname: 'app-portal-design',
title: (this.$t('app.dashboard.handleclick.title')),
width: 1600,
placement: 'DRAWER_RIGHT'
}
const viewparams: any = {
modelid: this.modelId,
utilServiceName: this.utilServiceName,
appdeNamePath: this.controlInstance?.getPSAppDataEntity()?.codeName || 'app',
}
const dynamicProps = {
customModel: this.customModelData,
...Util.getViewProps(this.context, viewparams)
}
const appdrawer = this.$appdrawer.openDrawer(view, dynamicProps);
this.dashboardDrawerEvent = appdrawer.subscribe((result: any) => {
if (Object.is(result.ret, 'OK')) {
if (result?.datas.length > 0) {
for (const model of result.datas) {
model.modelData = this.getPortletInstance(model);
}
this.customModelData = [...result.datas];
this.initDynamicMountedMap();
this.dashboardType = 'custom';
} else {
this.initStaticMountedMap();
this.dashboardType = "default";
}
this.$forceUpdate();
}
});
}
/**
* 部件事件
*
* @param {string} controlname
* @param {string} action
* @param {*} data
* @memberof KanbanControlBase
*/
public onCtrlEvent(controlname: string, action: string, data: any) {
if (action == 'refreshAll') {
this.viewState.next({
tag: 'all-portlet',
action: "refreshAll",
data: data
});
this.ctrlEvent({ controlname: this.controlInstance.name, action: 'refreshAll', data: data });
} else {
super.onCtrlEvent(controlname, action, data);
}
}
/**
* @description 部件销毁
* @memberof DashboardControlBase
*/
public ctrlDestroyed() {
super.ctrlDestroyed();
if (this.dashboardControlEvent) {
this.dashboardControlEvent.unsubscribe();
}
if (this.dashboardDrawerEvent) {
this.dashboardDrawerEvent.unsubscribe();
}
}
}