forked from robicch/jQueryGantt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathganttUtilities.js
237 lines (194 loc) · 7.63 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
/*
Copyright (c) 2012-2013 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.
*/
$.fn.gridify = function(options) {
this.options = {
colResizeZoneWidth:10
};
$.extend(this.options, options);
$.gridify.init($(this), this.options);
return this;
};
$.gridify = {
init: function(elems, opt) {
elems.each(function() {
var table = $(this);
//---------------------- header management start
table.find("th.gdfColHeader.gdfResizable:not(.gdfied)").mouseover(function() {
$(this).addClass("gdfColHeaderOver");
}).bind("mouseout.gdf", function() {
$(this).removeClass("gdfColHeaderOver");
if (!$.gridify.columInResize) {
$("body").removeClass("gdfHResizing");
}
}).bind("mousemove.gdf", function(e) {
if (!$.gridify.columInResize) {
var colHeader = $(this);
var mousePos = e.pageX - colHeader.offset().left;
if (colHeader.width() - mousePos < opt.colResizeZoneWidth) {
$("body").addClass("gdfHResizing");
} else {
$("body").removeClass("gdfHResizing");
}
}
}).bind("mousedown.gdf", function(e) {
var colHeader = $(this);
var mousePos = e.pageX - colHeader.offset().left;
if (colHeader.width() - mousePos < opt.colResizeZoneWidth) {
$.gridify.columInResize = $(this);
//bind event for start resizing
//console.debug("start resizing");
$(document).bind("mousemove.gdf", function(e) {
//manage resizing
//console.debug(e.pageX - $.gridify.columInResize.offset().left)
$.gridify.columInResize.width(e.pageX - $.gridify.columInResize.offset().left);
//bind mouse up on body to stop resizing
}).bind("mouseup.gdf", function() {
//console.debug("stop resizing");
$(this).unbind("mousemove.gdf").unbind("mouseup.gdf");
$("body").removeClass("gdfHResizing");
delete $.gridify.columInResize;
});
}
}).addClass("gdfied unselectable").attr("unselectable","true");
//---------------------- cell management start wrapping
table.find("td.gdfCell:not(.gdfied)").each(function() {
var cell = $(this);
if (cell.is(".gdfEditable")) {
var inp = $("<input type='text'>").addClass("gdfCellInput");
inp.val(cell.text());
cell.empty().append(inp);
} else {
var wrp = $("<div>").addClass("gdfCellWrap");
wrp.html(cell.html());
cell.empty().append(wrp);
}
}).addClass("gdfied");
;
});
}
};
$.splittify = {
init: function(where, first, second,perc) {
perc=perc || 50;
var splitter = $("<div>").addClass("splitterContainer");
var firstBox = $("<div>").addClass("splitElement splitBox1");
var splitterBar = $("<div>").addClass("splitElement vSplitBar").attr("unselectable", "on").html("|").css("padding-top",where.height()/2+"px");
var secondBox = $("<div>").addClass("splitElement splitBox2");
firstBox.append(first);
secondBox.append(second);
splitter.append(firstBox);
splitter.append(secondBox);
splitter.append(splitterBar);
where.append(splitter);
var w = where.innerWidth();
firstBox.width(w *perc/ 100 - splitterBar.width()).css({left:0});
splitterBar.css({left:firstBox.width()});
secondBox.width(w -firstBox.width()-splitterBar.width() ).css({left:firstBox.width() + splitterBar.width()});
splitterBar.bind("mousedown.gdf", function(e) {
$.splittify.splitterBar = $(this);
//bind event for start resizing
//console.debug("start splitting");
$("body").unselectable().bind("mousemove.gdf", function(e) {
//manage resizing
//console.debug(e.pageX - $.gridify.columInResize.offset().left)
var sb = $.splittify.splitterBar;
var pos = e.pageX - sb.parent().offset().left;
var w = sb.parent().width();
if (pos > 10 && pos < w - 20) {
sb.css({left:pos});
firstBox.width(pos);
secondBox.css({left:pos + sb.width(),width:w - pos - sb.width()});
}
//bind mouse up on body to stop resizing
}).bind("mouseup.gdf", function() {
//console.debug("stop splitting");
$(this).unbind("mousemove.gdf").unbind("mouseup.gdf").clearUnselectable();
delete $.splittify.splitterBar;
});
});
return {firstBox:firstBox,secondBox:secondBox,splitterBar:splitterBar};
}
};
//<%------------------------------------------------------------------------ UTILITIES ---------------------------------------------------------------%>
function computeStart(start) {
var 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.getTime();
}
function computeEnd(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.getTime();
}
function computeEndByDuration(start, duration) {
var d = new Date(start);
//console.debug("computeEndByDuration start ",d,duration)
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 new Date(start).distanceInWorkingDays(new Date(end));
}
//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;
};
}