-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGanttItem.js
158 lines (136 loc) · 5.33 KB
/
GanttItem.js
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
window.GanttCustomItem = (function () {
const Dashboard = DevExpress.Dashboard;
const GANTT_EXTENSION_NAME = 'GanttItem';
const svgIcon = `<?xml version = "1.0" encoding = "utf-8"?>
<svg version="1.1" id="`+ GANTT_EXTENSION_NAME + `" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
<path class="dx-dashboard-contrast-icon" d="M23,2c0-0.6-0.4-1-1-1H2C1.4,1,1,1.4,1,2v20c0,0.6,0.4,1,1,1h20c0.6,0,1-0.4,1-1 V2z M21,21H3V3h18V21z"/>
<path class="dx-dashboard-accent-icon" d="M12,9H5V5h7V9z M19,10H9v4h10V10z M15,15H7v4h8V15z"/>
</svg>`;
const ganttItemMetadata = {
bindings: [{
propertyName: 'ID',
dataItemType: 'Dimension',
displayName: 'ID',
enableInteractivity: true
}, {
propertyName: 'ParentID',
dataItemType: 'Dimension',
displayName: 'Parent ID',
enableInteractivity: true
}, {
propertyName: 'Text',
dataItemType: 'Dimension',
displayName: 'Text',
enableInteractivity: true
}, {
propertyName: 'StartDate',
dataItemType: 'Dimension',
displayName: 'Start Date',
enableInteractivity: true
}, {
propertyName: 'FinishDate',
dataItemType: 'Dimension',
displayName: 'Finish Date',
enableInteractivity: true
}],
interactivity: {
filter: true
},
icon: GANTT_EXTENSION_NAME,
title: 'Gantt Chart',
index: 0
};
class GanttItemViewer extends DevExpress.Dashboard.CustomItemViewer {
constructor(model, $container, options) {
super(model, $container, options);
this.dxGanttWidget = null;
}
_getDataSource() {
var data = [];
var datesValid = true;
this.iterateData(function (dataRow) {
data.push({
id: dataRow.getValue('ID')[0],
parentId: dataRow.getValue('ParentID')[0],
title: dataRow.getValue('Text')[0],
start: dataRow.getValue('StartDate')[0],
end: dataRow.getValue('FinishDate')[0],
clientDataRow: dataRow
});
var currentItem = data[data.length - 1];
if ((currentItem.start && !(currentItem.start instanceof Date)) || (currentItem.end && !(currentItem.end instanceof Date)))
datesValid = false;
});
if (!datesValid) {
DevExpress.ui.notify("Gantt: 'Start Date' or 'Finish Date' is not a Date object.", "warning", 3000);
return [];
}
return data;
}
_getDxGanttWidgetSettings() {
var _this = this;
return {
rootValue: -1,
tasks: {
dataSource: this._getDataSource()
},
columns: [{
dataField: "title",
caption: "Subject",
width: 300,
}, {
dataField: "start",
caption: "Start Date"
}, {
dataField: "end",
caption: "End Date"
}],
onTaskClick: function (e) {
var tasks = e.component.option("tasks.dataSource");
var clickedTask = tasks.filter(item => item.id === e.key)[0];
_this.setMasterFilter(clickedTask.clientDataRow);
},
scaleType: "days",
taskListWidth: 500,
};
}
setSelection(values) {
super.setSelection(values);
var _this = this;
var tasks = _this.dxGanttWidget.option("tasks.dataSource");
tasks.forEach(function (item) {
if (_this.isSelected(item.clientDataRow))
_this.dxGanttWidget.option("selectedRowKey", item.id);
});
}
clearSelection() {
super.clearSelection();
this.dxGanttWidget.option("selectedRowKey", null);
}
setSize(width, height) {
super.setSize(width, height);
this.dxGanttWidget.repaint();
}
renderContent($element, changeExisting) {
if (!changeExisting) {
var element = $element.jquery ? $element[0] : $element;
while (element.firstChild)
element.removeChild(element.firstChild);
this.dxGanttWidget = new DevExpress.ui.dxGantt(element, this._getDxGanttWidgetSettings());
} else {
this.dxGanttWidget.option(this._getDxGanttWidgetSettings());
}
}
}
class GanttItem{
constructor(dashboardControl) {
dashboardControl.registerIcon(svgIcon);
this.name = GANTT_EXTENSION_NAME;
this.metaData = ganttItemMetadata;
}
createViewerItem(model, $element, content) {
return new GanttItemViewer(model, $element, content);
}
}
return GanttItem;
})();