forked from jonleighton/date_input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery.date_input.js
460 lines (388 loc) · 17.6 KB
/
jquery.date_input.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
DateInput = (function($) { // Localise the $ function
function DateInput(el, opts) {
$('.date_selector').hide();
if (typeof(opts) != "object") opts = {};
$.extend(this, opts);
this.input = "target" in opts ? opts.target : $(el);
this.bindMethodsToObj("show", "hide", "hideIfClickOutside", "keydownHandler", "selectDate");
this.build();
this.selectDate();
opts.force_show == undefined ? this.hide() : this.show();
};
DateInput.prototype = {
build: function() {
if (this.input.parent().find('.date_selector').length == 0) {
var monthNav = $('<p class="month_nav">' +
'<span class="button prev" title="[Page-Up]">«</span>' +
' <span class="month_name"></span> ' +
'<span class="button next" title="[Page-Down]">»</span>' +
'</p>');
this.monthNameSpan = $(".month_name", monthNav);
$(".prev", monthNav).click(this.bindToObj(function() { this.moveMonthBy(-1); return false; }));
$(".next", monthNav).click(this.bindToObj(function() { this.moveMonthBy(1); return false; }));
var yearNav = $('<p class="year_nav">' +
'<span class="button prev" title="[Ctrl+Page-Up]">«</span>' +
' <span class="year_name"></span> ' +
'<span class="button next" title="[Ctrl+Page-Down]">»</span>' +
'</p>');
this.yearNameSpan = $(".year_name", yearNav);
$(".prev", yearNav).click(this.bindToObj(function() { this.moveMonthBy(-12); return false; }));
$(".next", yearNav).click(this.bindToObj(function() { this.moveMonthBy(12); return false; }));
var nav = $('<div class="nav"></div>').append(monthNav, yearNav);
var tableShell = "<table><thead><tr>";
$(this.adjustDays(this.short_day_names)).each(function() {
tableShell += "<th>" + this + "</th>";
});
tableShell += "</tr></thead><tbody></tbody></table>";
this.dateSelector = this.rootLayers = $('<div class="date_selector"></div>').append(nav, tableShell).insertAfter(this.input);
if ($.browser.msie && $.browser.version < 7) {
// The ieframe is a hack which works around an IE <= 6 bug where absolutely positioned elements
// appear behind select boxes. Putting an iframe over the top of the select box prevents this.
this.ieframe = $('<iframe class="date_selector_ieframe" frameborder="0" src="#"></iframe>').insertBefore(this.dateSelector);
this.rootLayers = this.rootLayers.add(this.ieframe);
// IE 6 only does :hover on A elements
$(".button", nav).mouseover(function() { $(this).addClass("hover") });
$(".button", nav).mouseout(function() { $(this).removeClass("hover") });
};
this.tbody = $("tbody", this.dateSelector);
}
else {
var div_selector = this.input.parent().find('.date_selector');
var monthNav = div_selector.find(".month_nav");
this.monthNameSpan = $(".month_name", monthNav);
$(".prev", monthNav).click(this.bindToObj(function() { this.moveMonthBy(-1); return false; }));
$(".next", monthNav).click(this.bindToObj(function() { this.moveMonthBy(1); return false; }));
var yearNav = div_selector.find(".year_nav");
this.yearNameSpan = $(".year_name", yearNav);
$(".prev", yearNav).click(this.bindToObj(function() { this.moveMonthBy(-12); return false; }));
$(".next", yearNav).click(this.bindToObj(function() { this.moveMonthBy(12); return false; }));
var nav = div_selector.find("nav");
var tableShell = div_selector.find("table");
this.dateSelector = this.rootLayers = div_selector;
if ($.browser.msie && $.browser.version < 7) {
// The ieframe is a hack which works around an IE <= 6 bug where absolutely positioned elements
// appear behind select boxes. Putting an iframe over the top of the select box prevents this.
this.ieframe = div_selector.find("date_selector_ieframe");
// this.rootLayers = this.rootLayers.add(this.ieframe);
// IE 6 only does :hover on A elements
$(".button", nav).mouseover(function() { $(this).addClass("hover") });
$(".button", nav).mouseout(function() { $(this).removeClass("hover") });
};
this.tbody = $("tbody", div_selector);
}
this.input.change(this.bindToObj(function() { this.selectDate(); }));
this.selectDate();
},
selectMonth: function(date) {
var newMonth = new Date(date.getFullYear(), date.getMonth(), 1);
if (!this.currentMonth || !(this.currentMonth.getFullYear() == newMonth.getFullYear() &&
this.currentMonth.getMonth() == newMonth.getMonth())) {
// We have moved to a different month and so need to re-draw the table
this.currentMonth = newMonth;
// Work out the range of days we will draw
var rangeStart = this.rangeStart(date), rangeEnd = this.rangeEnd(date);
var numDays = this.daysBetween(rangeStart, rangeEnd);
var dayCells = "";
// Draw each of the days
for (var i = 0; i <= numDays; i++) {
var currentDay = new Date(rangeStart.getFullYear(), rangeStart.getMonth(), rangeStart.getDate() + i, 12, 00);
if (this.isFirstDayOfWeek(currentDay)) dayCells += "<tr>";
if (currentDay.getMonth() == date.getMonth()) {
dayCells += '<td class="selectable_day" date="' + this.dateToString(currentDay) + '">' + currentDay.getDate() + '</td>';
} else {
dayCells += '<td class="unselected_month" date="' + this.dateToString(currentDay) + '">' + currentDay.getDate() + '</td>';
};
if (this.isLastDayOfWeek(currentDay)) dayCells += "</tr>";
};
this.tbody.empty().append(dayCells);
// Write the month and year in the header
this.monthNameSpan.empty().append(this.monthName(date));
this.yearNameSpan.empty().append(this.currentMonth.getFullYear());
$(".selectable_day", this.tbody).click(this.bindToObj(function(event) {
this.changeInput($(event.target).attr("date"));
}));
$("td[date=" + this.dateToString(new Date()) + "]", this.tbody).addClass("today");
$("td.selectable_day", this.tbody).mouseover(function() { $(this).addClass("hover") });
$("td.selectable_day", this.tbody).mouseout(function() { $(this).removeClass("hover") });
};
$('.selected', this.tbody).removeClass("selected");
$('td[date=' + this.selectedDateString + ']', this.tbody).addClass("selected");
},
// Select a particular date. If the date is not specified it is read from the input. If no date is
// found then the current date is selected. The selectMonth() function is responsible for actually
// selecting a particular date.
selectDate: function(date) {
if (typeof(date) == "undefined") {
date = this.stringToDate(this.input.val());
};
if (!date) date = new Date();
this.selectedDate = date;
this.selectedDateString = this.dateToString(this.selectedDate);
this.selectMonth(this.selectedDate);
},
// Write a date string to the input and hide. Trigger the change event so we know to update the
// selectedDate.
changeInput: function(dateString) {
this.input.val(dateString).change();
this.hide();
},
show: function() {
this.rootLayers.css("display", "block");
$([window, document.body]).click(this.hideIfClickOutside);
this.input.unbind("focus", this.show);
if (this.source) this.source.unbind("click", this.show);
$(document.body).keydown(this.keydownHandler);
this.setPosition();
},
hide: function() {
this.rootLayers.css("display", "none");
$([window, document.body]).unbind("click", this.hideIfClickOutside);
this.input.focus(this.show);
if (this.source) this.source.click(this.show);
$(document.body).unbind("keydown", this.keydownHandler);
},
// We should hide the date selector if a click event happens outside of it
hideIfClickOutside: function(event) {
if ($(event.target).hasClass('date_input_trigger')) {
if ($(event.target).parent().find('.date_selector') == this.input.parent().find('.date_selector')) {
this.hide();
}
}
else if (event.target != this.input[0] && !$(event.target).hasClass('date_selector')) {
this.hide();
};
},
// Returns true if the given event occurred inside the date selector
insideSelector: function(event) {
var offset = this.dateSelector.position();
offset.right = offset.left + this.dateSelector.outerWidth();
offset.bottom = offset.top + this.dateSelector.outerHeight();
return event.pageY < offset.bottom &&
event.pageY > offset.top &&
event.pageX < offset.right &&
event.pageX > offset.left;
},
// Respond to various different keyboard events
keydownHandler: function(event) {
switch (event.keyCode)
{
case 9: // tab
case 27: // esc
this.hide();
return;
break;
case 13: // enter
this.changeInput(this.selectedDateString);
break;
case 33: // page up
this.moveDateMonthBy(event.ctrlKey ? -12 : -1);
break;
case 34: // page down
this.moveDateMonthBy(event.ctrlKey ? 12 : 1);
break;
case 38: // up
this.moveDateBy(-7);
break;
case 40: // down
this.moveDateBy(7);
break;
case 37: // left
this.moveDateBy(-1);
break;
case 39: // right
this.moveDateBy(1);
break;
default:
return;
}
event.preventDefault();
},
stringToDate: function(string) {
var matches;
if (this.default_format == 'dd mmm yyyy') {
if (matches = string.match(/^(\d{1,2}) ([^\s]+) (\d{4,4})$/)) {
return new Date(matches[3], this.shortMonthNum(matches[2]), matches[1], 12, 00);
} else {
return null;
};
}
else if (this.default_format == 'mm-dd-yyyy') {
if (matches = string.match(/^(\d{2,2})-(\d{2,2})-(\d{4,4})$/)) {
return new Date(matches[3], matches[1]-1, matches[2]);
} else {
return null;
};
}
else if (this.default_format == 'dd-mm-yyyy') {
if (matches = string.match(/^(\d{2,2})-(\d{2,2})-(\d{4,4})$/)) {
return new Date(matches[3], matches[2]-1, matches[1]);
} else {
return null;
};
}
},
dateToString: function(date) {
if (this.default_format == 'dd mmm yyyy') {
return date.getDate() + " " + this.short_month_names[date.getMonth()] + " " + date.getFullYear();
}
else if (this.default_format == 'mm-dd-yyyy') {
var month = (date.getMonth() + 1).toString();
var dom = date.getDate().toString();
if (month.length == 1) month = "0" + month;
if (dom.length == 1) dom = "0" + dom;
return month + "-" + dom + "-" + date.getFullYear();
}
else if (this.default_format == 'dd-mm-yyyy') {
var month = (date.getMonth() + 1).toString();
var dom = date.getDate().toString();
if (month.length == 1) month = "0" + month;
if (dom.length == 1) dom = "0" + dom;
return dom + "-" + month + "-" + date.getFullYear();
}
},
setPosition: function() {
var offset = this.input.offset();
var topPosition = this.position != undefined ? this.position.top : offset.top + this.input.outerHeight();
var leftPosition = this.position != undefined ? this.position.left : offset.left;
this.rootLayers.css({
top: topPosition,
left: leftPosition
});
if (this.ieframe) {
this.ieframe.css({
width: this.dateSelector.outerWidth(),
height: this.dateSelector.outerHeight()
});
};
},
// Move the currently selected date by a particular number of days
moveDateBy: function(amount) {
var newDate = new Date(this.selectedDate.getFullYear(), this.selectedDate.getMonth(), this.selectedDate.getDate() + amount);
this.selectDate(newDate);
},
// Move the month of the currently selected date by a particular number of months. If we are moving
// to a month which does not have enough days to represent the current day-of-month, then we
// default to the last day of the month.
moveDateMonthBy: function(amount) {
var newDate = new Date(this.selectedDate.getFullYear(), this.selectedDate.getMonth() + amount, this.selectedDate.getDate());
if (newDate.getMonth() == this.selectedDate.getMonth() + amount + 1) {
// We have moved too far. For instance 31st March + 1 month = 1st May, not 30th April
newDate.setDate(0);
};
this.selectDate(newDate);
},
// Move the currently displayed month by a certain amount. This does *not* move the currently
// selected date, so we end up viewing a month with no visibly selected date.
moveMonthBy: function(amount) {
var newMonth = new Date(this.currentMonth.getFullYear(), this.currentMonth.getMonth() + amount, this.currentMonth.getDate());
this.selectMonth(newMonth);
},
monthName: function(date) {
return this.month_names[date.getMonth()];
},
// A hack to make "this" refer to this object instance when inside the given function
bindToObj: function(fn) {
var self = this;
return function() { return fn.apply(self, arguments) };
},
// See above
bindMethodsToObj: function() {
for (var i = 0; i < arguments.length; i++) {
this[arguments[i]] = this.bindToObj(this[arguments[i]]);
};
},
// Finds out the array index of a particular value in that array
indexFor: function(array, value) {
for (var i = 0; i < array.length; i++) {
if (value == array[i]) return i;
};
},
// Finds the number of a given month name
monthNum: function(month_name) {
return this.indexFor(this.month_names, month_name);
},
// Finds the number of a given short month name
shortMonthNum: function(month_name) {
return this.indexFor(this.short_month_names, month_name);
},
// Finds the number of a given day name
shortDayNum: function(day_name) {
return this.indexFor(this.short_day_names, day_name);
},
// Works out the number of days between two dates
daysBetween: function(start, end) {
start = Date.UTC(start.getFullYear(), start.getMonth(), start.getDate());
end = Date.UTC(end.getFullYear(), end.getMonth(), end.getDate());
return (end - start) / 86400000;
},
/*
changeDayTo: Given a date, move along the date line in the given direction until we reach the
desired day of week.
The maths is a bit complex, here's an explanation.
Think of a continuous repeating number line like:
.. 5 6 0 1 2 3 4 5 6 0 1 2 3 4 5 6 0 1 ..
We are essentially trying to find the difference between two numbers
on the line in one direction (dictated by the sign of direction variable).
Unfortunately Javascript's modulo operator works such that -5 % 7 = -5,
instead of -5 % 7 = 2, so we need to only work with the positives.
To find the difference between 1 and 4, going backwards, we can treat 1
as (1 + 7) = 8, so the different is |8 - 4| = 4. If we don't cross the
boundary between 0 and 6, for instance to find the backwards difference
between 5 and 2, |(5 + 7) - 2| = |12 - 2| = 10. And 10 % 7 = 3.
Going forwards, to find the difference between 4 and 1, we again treat 1
as (1 + 7) = 8, and the difference is |4 - 8| = 4. If we don't cross the
boundary, the difference between 2 and 5 is |2 - (5 + 7)| = |2 - 12| = 10.
And 10 % 7 = 3.
Once we have the positive difference in either direction represented as a
absolute value, we can multiply it by the direction variable to get the difference
in the desired direction.
We can condense the two methods into a single equation:
backwardsDifference = direction * (|(currentDayNum + 7) - dayOfWeek| % 7)
= direction * (|currentDayNum - dayOfWeek + 7| % 7)
forwardsDifference = direction * (|currentDayNum - (dayOfWeek + 7)| % 7)
= direction * (|currentDayNum - dayOfWeek - 7| % 7)
(The two equations now differ only by the +/- 7)
difference = direction * (|currentDayNum - dayOfWeek - (direction * 7)| % 7)
*/
changeDayTo: function(dayOfWeek, date, direction) {
var difference = direction * (Math.abs(date.getDay() - dayOfWeek - (direction * 7)) % 7);
return new Date(date.getFullYear(), date.getMonth(), date.getDate() + difference);
},
// Given a date, return the day at the start of the week *before* this month
rangeStart: function(date) {
return this.changeDayTo(this.start_of_week, new Date(date.getFullYear(), date.getMonth()), -1);
},
// Given a date, return the day at the end of the week *after* this month
rangeEnd: function(date) {
return this.changeDayTo((this.start_of_week - 1) % 7, new Date(date.getFullYear(), date.getMonth() + 1, 0), 1);
},
// Is the given date the first day of the week?
isFirstDayOfWeek: function(date) {
return date.getDay() == this.start_of_week;
},
// Is the given date the last day of the week?
isLastDayOfWeek: function(date) {
return date.getDay() == (this.start_of_week - 1) % 7;
},
// Adjust a given array of day names to begin with the configured start-of-week
adjustDays: function(days) {
var newDays = [];
for (var i = 0; i < days.length; i++) {
newDays[i] = days[(i + this.start_of_week) % 7];
};
return newDays;
}
};
$.fn.date_input = function(opts) {
var conf = {
month_names: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
short_month_names: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
short_day_names: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"],
start_of_week: 1,
default_format: 'dd mmm yyyy'
};
$.extend(conf, opts, {'source': this});
return this.each(function() { new DateInput(this, conf); });
};
return DateInput;
})(jQuery); // End localisation of the $ function