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
import { IPSAppDEGanttView, IPSDEGantt } from '@ibiz/dynamic-model-api';
import { MDViewBase } from './mdview-base';
import { ModelTool, GanttViewInterface } from 'ibiz-core';
/**
* 甘特视图基类
*
* @export
* @class GanttViewBase
* @extends {MDViewBase}
* @implements {GanttViewInterface}
*/
export class GanttViewBase extends MDViewBase implements GanttViewInterface {
/**
* 甘特视图实例
*
* @memberof GanttViewBase
*/
public declare viewInstance: IPSAppDEGanttView;
/**
* 甘特部件实例
*
* @memberof GanttViewBase
*/
public ganttInstance!: IPSDEGantt;
/**
* 视图默认加载
*
* @memberof GanttViewBase
*/
public isLoadDefault: boolean = true;
/**
* 引擎初始化
*
* @param {*} [opts={}] 引擎参数
* @memberof GanttViewBase
*/
public engineInit(opts: any = {}): void {
if (this.Environment && this.Environment.isPreviewMode) {
return;
}
if (this.engine && this.ganttInstance) {
let engineOpts = Object.assign({
view: this,
p2k: '0',
isLoadDefault: this.viewInstance.loadDefault,
keyPSDEField: this.appDeCodeName.toLowerCase(),
majorPSDEField: this.appDeMajorFieldName.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);
},
gantt: (this.$refs[this.ganttInstance.name] as any).ctrl,
}, opts)
if (this.searchFormInstance?.name && this.$refs[this.searchFormInstance.name]) {
engineOpts.searchform = ((this.$refs[this.searchFormInstance.name] as any).ctrl);
}
if (this.quickSearchFormInstance?.name && this.$refs[this.quickSearchFormInstance.name]) {
engineOpts.quicksearchform = ((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 GanttViewBase
*/
public async viewModelInit() {
this.viewInstance = (this.staticProps.modeldata) as IPSAppDEGanttView;
await super.viewModelInit();
this.isLoadDefault = this.viewInstance?.loadDefault;
this.ganttInstance = ModelTool.findPSControlByName('gantt', this.viewInstance.getPSControls()) as IPSDEGantt;
}
/**
* 多数据视图挂载
*
* @memberof GanttViewBase
*/
public containerMounted() {
super.containerMounted();
}
/**
* 绘制甘特部件
*
* @memberof GanttViewBase
*/
public renderMainContent() {
let { targetCtrlName, targetCtrlParam, targetCtrlEvent }: { targetCtrlName: string, targetCtrlParam: any, targetCtrlEvent: any } = this.computeTargetCtrlData(this.ganttInstance);
return this.$createElement(targetCtrlName, { props: targetCtrlParam, ref: this.ganttInstance?.name, on: targetCtrlEvent },);
}
}