forked from angular-gantt/angular-gantt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
165 lines (146 loc) · 7.3 KB
/
main.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
159
160
161
162
163
164
165
'use strict';
/**
* @ngdoc function
* @name angularGanttDemoApp.controller:MainCtrl
* @description
* # MainCtrl
* Controller of the angularGanttDemoApp
*/
angular.module('angularGanttDemoApp')
.controller('MainCtrl', function($scope, $timeout, Uuid, Sample, moment, GANTT_EVENTS) {
$scope.options = {
mode: 'custom',
scale: 'day',
maxHeight: false,
width: false,
autoExpand: 'none',
taskOutOfRange: 'expand',
fromDate: null,
toDate: null,
showWeekends: true,
showNonWorkHours: true,
currentDate: 'line',
draw: false,
readOnly: false,
filterTask: undefined,
filterRow: undefined
};
$scope.$watch('fromDate+toDate', function() {
$scope.options.fromDate = $scope.fromDate;
$scope.options.toDate = $scope.toDate;
});
// Get today date for currentDate indicator
$scope.currentDate = new Date(2013, 9, 23, 11, 20, 0);
$scope.$on(GANTT_EVENTS.READY, function() {
$scope.loadTimespans(Sample.getSampleTimespans().timespan1);
$scope.loadData(Sample.getSampleData().data1);
$timeout(function() {
$scope.scrollToDate($scope.currentDate);
}, 0, true);
});
$scope.removeSomeSamples = function() {
$scope.removeData([
{'id': 'c65c2672-445d-4297-a7f2-30de241b3145'}, // Remove all Kickoff meetings
{'id': '2f85dbeb-0845-404e-934e-218bf39750c0', 'tasks': [
{'id': 'f55549b5-e449-4b0c-9f4b-8b33381f7d76'},
{'id': '5e997eb3-4311-46b1-a1b4-7e8663ea8b0b'},
{'id': '6fdfd775-7b22-42ec-a12c-21a64c9e7a9e'}
]}, // Remove some Milestones
{'id': 'cfb29cd5-1737-4027-9778-bb3058fbed9c', 'tasks': [
{'id': '57638ba3-dfff-476d-ab9a-30fda1e44b50'}
]} // Remove order basket from Sprint 2
]);
};
$scope.removeSamples = function() {
$scope.clearData();
};
$scope.scrollEvent = function(event) {
if (angular.equals(event.direction, 'left')) {
// Raised if the user scrolled to the left side of the Gantt. Use this event to load more data.
console.log('Scroll event: Left');
} else if (angular.equals(event.direction, 'right')) {
// Raised if the user scrolled to the right side of the Gantt. Use this event to load more data.
console.log('Scroll event: Right');
}
};
var logTaskEvent = function(event, data) {
// A task event has occured.
var output = '';
for (var property in data) {
var propertyValue = data[property];
if (property === 'evt' && propertyValue) {
propertyValue = propertyValue.type;
} else if (property === 'element' && propertyValue.length > 0) {
propertyValue = propertyValue[0].localName + (propertyValue[0].className ? '.' + propertyValue[0].className : '');
} else if (property === 'task') {
propertyValue = propertyValue.name;
} else if (property === 'timespan') {
propertyValue = propertyValue.name;
} else if (property === 'column') {
propertyValue = propertyValue.date.format() + '-' + propertyValue.getEndDate().format();
} else if (property === 'row') {
propertyValue = propertyValue.name;
} else if (property === 'date') {
propertyValue = propertyValue.format();
}
output += property + ': ' + propertyValue +'; ';
}
console.log('$scope.$on: ' + event.name + ': ' + output);
};
$scope.$on(GANTT_EVENTS.TASK_CLICKED, logTaskEvent);
$scope.$on(GANTT_EVENTS.TASK_DBL_CLICKED, logTaskEvent);
$scope.$on(GANTT_EVENTS.TASK_CONTEXTMENU, logTaskEvent);
$scope.$on(GANTT_EVENTS.TASK_CHANGED, logTaskEvent);
$scope.$on(GANTT_EVENTS.TASK_MOVE_BEGIN, logTaskEvent);
//$scope.$on(GANTT_EVENTS.TASK_MOVE, logTaskEvent);
$scope.$on(GANTT_EVENTS.TASK_MOVE_END, logTaskEvent);
$scope.$on(GANTT_EVENTS.TASK_RESIZE_BEGIN, logTaskEvent);
//$scope.$on(GANTT_EVENTS.TASK_RESIZE, logTaskEvent);
$scope.$on(GANTT_EVENTS.TASK_RESIZE_END, logTaskEvent);
$scope.$on(GANTT_EVENTS.COLUMN_CLICKED, logTaskEvent);
$scope.$on(GANTT_EVENTS.COLUMN_DBL_CLICKED, logTaskEvent);
$scope.$on(GANTT_EVENTS.COLUMN_CONTEXTMENU, logTaskEvent);
$scope.$on(GANTT_EVENTS.ROW_MOUSEDOWN, logTaskEvent);
$scope.$on(GANTT_EVENTS.ROW_MOUSEUP, logTaskEvent);
$scope.$on(GANTT_EVENTS.ROW_CLICKED, logTaskEvent);
$scope.$on(GANTT_EVENTS.ROW_DBL_CLICKED, logTaskEvent);
$scope.$on(GANTT_EVENTS.ROW_CONTEXTMENU, logTaskEvent);
$scope.$on(GANTT_EVENTS.ROW_CHANGED, logTaskEvent);
$scope.$on(GANTT_EVENTS.ROW_ADDED, logTaskEvent);
var rowEvent = function(event, data) {
if (!$scope.options.readOnly && $scope.options.draw) {
// Example to draw task inside row
if ((data.evt.target ? data.evt.target : data.evt.srcElement).className.indexOf('gantt-row') > -1) {
var startDate = data.date;
var endDate = moment(startDate);
//endDate.setDate(endDate.getDate());
var infoTask = {
id: Uuid.randomUuid(), // Unique id of the task.
name: 'Drawn task', // Name shown on top of each task.
from: startDate, // Date can be a String, Timestamp or Date object.
to: endDate,// Date can be a String, Timestamp or Date object.
color: '#AA8833' // Color of the task in HEX format (Optional).
};
var task = data.row.addTask(infoTask);
task.isCreating = true;
task.updatePosAndSize();
}
}
};
$scope.$on(GANTT_EVENTS.ROW_MOUSEDOWN, rowEvent);
$scope.$on(GANTT_EVENTS.ROW_LABEL_MOUSEDOWN, logTaskEvent);
$scope.$on(GANTT_EVENTS.ROW_LABEL_MOUSEUP, logTaskEvent);
$scope.$on(GANTT_EVENTS.ROW_LABEL_CLICKED, logTaskEvent);
$scope.$on(GANTT_EVENTS.ROW_LABEL_DBL_CLICKED, logTaskEvent);
$scope.$on(GANTT_EVENTS.ROW_LABEL_CONTEXTMENU, logTaskEvent);
$scope.$on(GANTT_EVENTS.ROW_HEADER_MOUSEDOWN, logTaskEvent);
$scope.$on(GANTT_EVENTS.ROW_HEADER_MOUSEUP, logTaskEvent);
$scope.$on(GANTT_EVENTS.ROW_HEADER_CLICKED, logTaskEvent);
$scope.$on(GANTT_EVENTS.ROW_HEADER_DBL_CLICKED, logTaskEvent);
$scope.$on(GANTT_EVENTS.ROW_HEADER_CONTEXTMENU, logTaskEvent);
$scope.$on(GANTT_EVENTS.ROW_LABELS_RESIZED, logTaskEvent);
$scope.$on(GANTT_EVENTS.TIMESPAN_ADDED, logTaskEvent);
$scope.$on(GANTT_EVENTS.TIMESPAN_CHANGED, logTaskEvent);
$scope.$on(GANTT_EVENTS.READY, logTaskEvent);
$scope.$on(GANTT_EVENTS.SCROLL, logTaskEvent);
});