-
Notifications
You must be signed in to change notification settings - Fork 932
/
ganttUtilities.js
597 lines (466 loc) · 18.8 KB
/
ganttUtilities.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
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
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
/*
Copyright (c) 2012-2018 Open Lab
Written by Roberto Bicchierai and Silvia Chelazzi http://roberto.open-lab.com
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
$.gridify = function (table, opt) {
var options = {
resizeZoneWidth: 10
};
$.extend(options, opt);
var box = $("<div>").addClass("gdfWrapper");
box.append(table);
var head = table.clone();
head.addClass("table ganttFixHead");
//remove non head
head.find("tbody").remove();
box.append(head);
box.append(table);
var hTh = head.find(".gdfColHeader");
var cTh = table.find(".gdfColHeader");
for (var i = 0; i < hTh.length; i++) {
hTh.eq(i).data("fTh", cTh.eq(i));
}
//--------- set table to 0 to prevent a strange 100%
table.width(0);
head.width(0);
//---------------------- header management start
head.find("th.gdfColHeader:not(.gdfied)").mouseover(function () {
$(this).addClass("gdfColHeaderOver");
}).on("mouseout.gdf", function () {
$(this).removeClass("gdfColHeaderOver");
if (!$.gridify.columInResize) {
$("body").removeClass("gdfHResizing");
}
}).on("mousemove.gdf", function (e) {
if (!$.gridify.columInResize) {
var colHeader = $(this);
var nextCol = colHeader.next();
if (nextCol.length > 0 && nextCol.width() < options.resizeZoneWidth)
colHeader = nextCol;
if (!colHeader.is(".gdfResizable"))
return;
var mousePos = e.pageX - colHeader.offset().left;
if (colHeader.width() - mousePos < options.resizeZoneWidth) {
$("body").addClass("gdfHResizing");
} else {
$("body").removeClass("gdfHResizing");
}
}
}).on("mousedown.gdf", function (e) {
//console.debug("mousedown.gdf")
var colHeader = $(this);
var nextCol = colHeader.next();
if (nextCol.length > 0 && nextCol.width() < options.resizeZoneWidth)
colHeader = nextCol;
if (!colHeader.is(".gdfResizable"))
return;
var mousePos = e.pageX - colHeader.offset().left;
if (colHeader.width() - mousePos < options.resizeZoneWidth) {
$("body").unselectable();
$.gridify.columInResize = colHeader;
//on event for start resizing
$(document).on("mousemove.gdf", function (e) {
e.preventDefault();
$("body").addClass("gdfHResizing");
//manage resizing
var w = e.pageX - $.gridify.columInResize.offset().left;
w = w <= 1 ? 1 : w;
$.gridify.columInResize.width(w);
$.gridify.columInResize.data("fTh").width(w);
//on mouse up on body to stop resizing
}).on("mouseup.gdf", function () {
//console.debug("mouseup.gdf")
$(this).off("mousemove.gdf").off("mouseup.gdf").clearUnselectable();
$("body").removeClass("gdfHResizing");
delete $.gridify.columInResize;
//save columns dimension
storeGridState();
});
}
}).on("dblclick.gdf", function () {
//console.debug("dblclick.gdf")
var col = $(this);
if (!col.is(".gdfResizable"))
return;
var idx = $("th", col.parents("table")).index(col);
var columnTd = $("td:nth-child(" + (idx + 1) + ")", table);
var w = 0;
columnTd.each(function () {
var td = $(this);
var content = td.children("input").length ? td.children("input").val() : td.html();
var tmp = $("<div/>").addClass("columnWidthTest").html(content).css({position: "absolute"});
$("body").append(tmp);
w = Math.max(w, tmp.width() + parseFloat(td.css("padding-left")));
tmp.remove();
});
w = w + 5;
col.width(w);
col.data("fTh").width(w);
//save columns dimension
storeGridState();
return false;
}).addClass("gdfied unselectable").attr("unselectable", "true");
function storeGridState() {
//console.debug("storeGridState");
if (localStorage) {
var gridState = {};
var colSizes = [];
$(".gdfTable .gdfColHeader").each(function () {
colSizes.push($(this).outerWidth());
});
gridState.colSizes = colSizes;
localStorage.setObject("TWPGanttGridState", gridState);
}
}
function loadGridState() {
//console.debug("loadGridState")
if (localStorage) {
if (localStorage.getObject("TWPGanttGridState")) {
var gridState = localStorage.getObject("TWPGanttGridState");
if (gridState.colSizes) {
box.find(".gdfTable .gdfColHeader").each(function (i) {
$(this).width(gridState.colSizes[i]);
});
}
}
}
}
loadGridState();
return box;
};
$.splittify = {
init: function (where, first, second, perc) {
//perc = perc || 50;
var element = $("<div>").addClass("splitterContainer");
var firstBox = $("<div>").addClass("splitElement splitBox1");
var splitterBar = $("<div>").addClass("splitElement vSplitBar").attr("unselectable", "on").css("padding-top", where.height() / 2 + "px");
var secondBox = $("<div>").addClass("splitElement splitBox2");
var splitter = new Splitter(element, firstBox, secondBox, splitterBar);
splitter.perc = perc;
//override with saved one
loadPosition();
var toLeft = $("<div>").addClass("toLeft").html("{").click(function () {splitter.resize(0.001, 300);});
splitterBar.append(toLeft);
var toCenter = $("<div>").addClass("toCenter").html("©").click(function () {splitter.resize(50, 300);});
splitterBar.append(toCenter);
var toRight = $("<div>").addClass("toRight").html("}").click(function () {splitter.resize(99.9999, 300);});
splitterBar.append(toRight);
firstBox.append(first);
secondBox.append(second);
element.append(firstBox).append(secondBox).append(splitterBar);
where.append(element);
var totalW = where.innerWidth();
var splW = splitterBar.width();
var fbw = totalW * perc / 100 - splW;
fbw = fbw > totalW - splW - splitter.secondBoxMinWidth ? totalW - splW - splitter.secondBoxMinWidth : fbw;
firstBox.width(fbw).css({left: 0});
splitterBar.css({left: firstBox.width()});
secondBox.width(totalW - fbw - splW).css({left: firstBox.width() + splW});
splitterBar.on("mousedown.gdf", function (e) {
e.preventDefault();
$("body").addClass("gdfHResizing");
$.splittify.splitterBar = $(this);
//on event for start resizing
//console.debug("start splitting");
$("body").unselectable().on("mousemove.gdf", function (e) {
//manage resizing
e.preventDefault();
var sb = $.splittify.splitterBar;
var pos = e.pageX - sb.parent().offset().left;
var w = sb.parent().width();
var fbw = firstBox;
pos = pos > splitter.firstBoxMinWidth ? pos : splitter.firstBoxMinWidth;
//pos = pos < realW - 10 ? pos : realW - 10;
pos = pos > totalW - splW - splitter.secondBoxMinWidth ? totalW - splW - splitter.secondBoxMinWidth : pos;
sb.css({left: pos});
firstBox.width(pos);
secondBox.css({left: pos + sb.width(), width: w - pos - sb.width()});
splitter.perc = (firstBox.width() / splitter.element.width()) * 100;
//on mouse up on body to stop resizing
}).on("mouseup.gdf", function () {
//console.debug("stop splitting");
$(this).off("mousemove.gdf").off("mouseup.gdf").clearUnselectable();
delete $.splittify.splitterBar;
$("body").removeClass("gdfHResizing");
storePosition();
});
});
// keep both side in synch when scroll
var stopScroll = false;
var fs = firstBox.add(secondBox);
var lastScrollTop=0;
fs.scroll(function (e) {
var el = $(this);
var top = el.scrollTop();
var firstBoxHeader = firstBox.find(".ganttFixHead");
var secondBoxHeader = secondBox.find(".ganttFixHead");
if (el.is(".splitBox1") && stopScroll != "splitBox2") {
stopScroll = "splitBox1";
secondBox.scrollTop(top);
} else if (el.is(".splitBox2") && stopScroll != "splitBox1") {
stopScroll = "splitBox2";
firstBox.scrollTop(top);
}
if (Math.abs(top-lastScrollTop)>10) {
firstBoxHeader.css('top', top).hide();
secondBoxHeader.css('top', top).hide();
}
lastScrollTop=top;
where.stopTime("reset").oneTime(100, "reset", function () {
stopScroll = "";
top = el.scrollTop();
firstBoxHeader.css('top', top).fadeIn();
secondBoxHeader.css('top', top).fadeIn();
});
});
firstBox.on('mousewheel MozMousePixelScroll', function (event) {
event.preventDefault();
var deltaY = event.originalEvent.wheelDeltaY;
if (!deltaY)
deltaY = event.originalEvent.wheelDelta;
var deltaX = event.originalEvent.wheelDeltaX;
if (event.originalEvent.axis) {
deltaY = event.originalEvent.axis == 2 ? -event.originalEvent.detail : null;
deltaX = event.originalEvent.axis == 1 ? -event.originalEvent.detail : null;
}
deltaY = Math.abs(deltaY) < 40 ? 40 * (Math.abs(deltaY) / deltaY) : deltaY;
deltaX = Math.abs(deltaX) < 40 ? 40 * (Math.abs(deltaX) / deltaX) : deltaX;
var scrollToY = secondBox.scrollTop() - deltaY;
var scrollToX = firstBox.scrollLeft() - deltaX;
// console.debug( firstBox.scrollLeft(), Math.abs(deltaX), Math.abs(deltaY));
if (deltaY) secondBox.scrollTop(scrollToY);
if (deltaX) firstBox.scrollLeft(scrollToX);
return false;
});
function Splitter(element, firstBox, secondBox, splitterBar) {
this.element = element;
this.firstBox = firstBox;
this.secondBox = secondBox;
this.splitterBar = splitterBar;
this.perc = 0;
this.firstBoxMinWidth = 0;
this.secondBoxMinWidth = 30;
this.resize = function (newPerc, anim) {
var animTime = anim ? anim : 0;
this.perc = newPerc ? newPerc : this.perc;
var totalW = this.element.width();
var splW = this.splitterBar.width();
var newW = totalW * this.perc / 100;
newW = newW > this.firstBoxMinWidth ? newW : this.firstBoxMinWidth;
newW = newW > totalW - splW - splitter.secondBoxMinWidth ? totalW - splW - splitter.secondBoxMinWidth : newW;
this.firstBox.animate({width: newW}, animTime, function () {$(this).css("overflow-x", "auto")});
this.splitterBar.animate({left: newW}, animTime);
this.secondBox.animate({left: newW + this.splitterBar.width(), width: totalW - newW - splW}, animTime, function () {$(this).css("overflow", "auto")});
storePosition();
};
var self = this;
this.splitterBar.on("dblclick", function () {
self.resize(50, true);
})
}
function storePosition () {
//console.debug("storePosition",splitter.perc);
if (localStorage) {
localStorage.setItem("TWPGanttSplitPos",splitter.perc);
}
}
function loadPosition () {
//console.debug("loadPosition");
if (localStorage) {
if (localStorage.getItem("TWPGanttSplitPos")) {
splitter.perc=parseFloat(localStorage.getItem("TWPGanttSplitPos"));
}
}
}
return splitter;
}
};
//<%------------------------------------------------------------------------ UTILITIES ---------------------------------------------------------------%>
// same dates returns 1
function getDurationInUnits(start,end){
return start.distanceInWorkingDays(end)+1; // working in days
}
//con due date uguali ritorna 0: usata per cancolare la distanza effettiva tra due date
function getDistanceInUnits(date1,date2){
return date1.distanceInWorkingDays(date2); // working in days
}
function incrementDateByUnits(date,duration){
date.incrementDateByWorkingDays(duration); // working in days
return date;
}
function computeStart(start) {
return computeStartDate(start).getTime();
}
/**
* @param start
* @returns {Date} the closes start date
*/
function computeStartDate(start) {
var d;
d = new Date(start + 3600000 * 12);
d.setHours(0, 0, 0, 0);
//move to next working day
while (isHoliday(d)) {
d.setDate(d.getDate() + 1);
}
d.setHours(0, 0, 0, 0);
return d;
}
function computeEnd(end) {
return computeEndDate(end).getTime()
}
/**
* @param end
* @returns {Date} the closest end date
*/
function computeEndDate(end) {
var d = new Date(end - 3600000 * 12);
d.setHours(23, 59, 59, 999);
//move to next working day
while (isHoliday(d)) {
d.setDate(d.getDate() + 1);
}
d.setHours(23, 59, 59, 999);
return d;
}
function computeEndByDuration(start, duration) {
//console.debug("computeEndByDuration start ",d,duration)
var d = new Date(start);
var q = duration - 1;
while (q > 0) {
d.setDate(d.getDate() + 1);
if (!isHoliday(d))
q--;
}
d.setHours(23, 59, 59, 999);
return d.getTime();
}
function incrementDateByWorkingDays(date, days) {
var d = new Date(date);
d.incrementDateByWorkingDays(days);
return d.getTime();
}
function recomputeDuration(start, end) {
//console.debug("recomputeDuration");
return getDurationInUnits(new Date(start),new Date(end));
}
function resynchDates(leavingField, startField, startMilesField, durationField, endField, endMilesField) {
//console.debug("resynchDates",leavingField.prop("name"), "start. "+startField.val(),"durationField: "+ durationField.val(), "endField: "+endField.val());
function resynchDatesSetFields(command) {
//console.debug("resynchDatesSetFields",command);
var duration = stringToDuration(durationField.val());
var start = computeStart(Date.parseString(startField.val()).getTime());
var end = endField.val();
if (end.length > 0) {
end = Date.parseString(end);
end.setHours(23, 59, 59, 999); //this is necessary because compute end get the closest end, and parseString returns 00:00
end = computeEnd(end.getTime());
}
var date = new Date();
if ("CHANGE_END" == command) {
date.setTime(start);
var workingUnits = duration-1; // if we do not decremet a task lasting two days starting on 10 will end on 12 (at 00:00) instead of on (at 23:59)
incrementDateByUnits(date,workingUnits);
date.setHours(23, 59, 59, 999); //this is necessary because compute end get the closest end, and parseString returns 00:00
end = computeEnd(date.getTime()); // not strictly necessary
} else if ("CHANGE_START" == command) {
date.setTime(end);
var workingUnits = duration - 1; // if we do not decremet a task lasting two days starting on 10 will end on 12 (at 00:00) instead of on (at 23:59)
incrementDateByUnits(date,-workingUnits);
date.setHours(0, 0, 0, 0); //this is necessary because decreasing end we are at 23:50
start = computeStart(date.getTime()); //not strictly necessary
} else if ("CHANGE_DURATION" == command) {
duration = getDurationInUnits(new Date(start),new Date(end)) + 1;
}
startField.val(new Date(start).format());
endField.val(new Date(end).format());
durationField.val(durationToString(duration));
return {start: start, end: end, duration: duration};
}
var leavingFieldName = leavingField.prop("name");
var durIsFilled = durationField.val().length > 0;
var startIsFilled = startField.val().length > 0;
var endIsFilled = endField.val().length > 0;
var startIsMilesAndFilled = startIsFilled && (startMilesField.prop("checked") || startField.is("[readOnly]"));
var endIsMilesAndFilled = endIsFilled && (endMilesField.prop("checked") || endField.is("[readOnly]"));
if (durIsFilled) {
durationField.val(durationToString(stringToDuration(durationField.val())));
}
if (leavingFieldName.indexOf("Milestone") > 0) {
if (startIsMilesAndFilled && endIsMilesAndFilled) {
durationField.prop("readOnly", true);
} else {
durationField.prop("readOnly", false);
}
return;
}
//need at least two values to resynch the third
if ((durIsFilled ? 1 : 0) + (startIsFilled ? 1 : 0) + (endIsFilled ? 1 : 0) < 2)
return;
var ret;
if (leavingFieldName == 'start' && startIsFilled) {
if (endIsMilesAndFilled && durIsFilled) {
ret = resynchDatesSetFields("CHANGE_DURATION");
} else if (durIsFilled) {
ret = resynchDatesSetFields("CHANGE_END");
}
} else if (leavingFieldName == 'duration' && durIsFilled && !(endIsMilesAndFilled && startIsMilesAndFilled)) {
if (endIsMilesAndFilled && !startIsMilesAndFilled) {
ret = resynchDatesSetFields("CHANGE_START");
} else if (!endIsMilesAndFilled) {
//document.title=('go and change end!!');
ret = resynchDatesSetFields("CHANGE_END");
}
} else if (leavingFieldName == 'end' && endIsFilled) {
ret = resynchDatesSetFields("CHANGE_DURATION");
}
return ret;
}
//This prototype is provided by the Mozilla foundation and
//is distributed under the MIT license.
//http://www.ibiblio.org/pub/Linux/LICENSES/mit.license
if (!Array.prototype.filter) {
Array.prototype.filter = function (fun) {
var len = this.length;
if (typeof fun != "function")
throw new TypeError();
var res = new Array();
var thisp = arguments[1];
for (var i = 0; i < len; i++) {
if (i in this) {
var val = this[i]; // in case fun mutates this
if (fun.call(thisp, val, i, this))
res.push(val);
}
}
return res;
};
}
function durationToString(d) {
return d;
}
function stringToDuration(durStr) {
var duration = NaN;
duration = daysFromString(durStr, true) || 1;
return duration;
}
function goToPage(url) {
if (!canILeave()) return;
window.location.href = url;
}