forked from component/datepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
220 lines (168 loc) · 4.24 KB
/
index.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
/**
* Module dependencies.
*/
var Calendar = require('calendar')
, Popover = require('popover')
, event = require('event')
, events = require('events')
, keyname = require('keyname')
, Emitter = require('emitter');
/**
* Expose `Datepicker`.
*/
module.exports = Datepicker;
/**
* Initialize a new date picker with the given input `el`.
*
* @param {Element} el
* @format String "DD/MM/YYYY", "YYYY/MM/DD", "MM/DD/YYYY"
* @api public
*/
function Datepicker(el, format) {
if (!(this instanceof Datepicker)) return new Datepicker(el, format);
this.el = el;
this.cal = new Calendar;
this.cal.addClass('datepicker-calendar');
this.events = events(this.el, this);
this.events.bind('click', 'onclick');
this.events.bind('change', 'onchange');
this.events.bind('keydown', 'onkeydown');
this.cal.on('change', this.value.bind(this));
if (typeof(format) === 'undefined') {
this.format = "DD/MM/YYYY";
} else {
this.format = format;
}
this.initDateFormat(this.format);
event.bind(document, 'click', this.hide.bind(this));
return this;
}
/**
* Mixin emitter.
*/
Emitter(Datepicker.prototype);
/**
* Parsing the format string
*/
Datepicker.prototype.initDateFormat = function(format) {
var reDay = /DD/i
, reMonth = /MM/i
, reYear = /Y/gi
, reDivider = /[^a-zA-Z0-9]/
, dayPos = 0
, monthPos = 0
, yearPos = 0
, yearCount = 0
, divider = ""
, dateArray = [];
this.dayPos = format.search(reDay);
this.monthPos = format.search(reMonth);
this.yearPos = format.search(reYear);
this.yearCount = format.match(reYear).length;
this.divider = format.match(reDivider)[0];
}
Datepicker.prototype.processDate = function(date) {
var dateArray = []
, year
, finalString = ""
, divider = this.divider;
if (this.yearCount == 2) {
year = String(date.getFullYear()).slice(2, 4);
} else {
year = date.getFullYear();
}
dateArray = [
{ value: date.getDate(), position: this.dayPos },
{ value: (date.getMonth() + 1), position: this.monthPos },
{ value: year, position: this.yearPos }
];
dateArray.sort(function(a, b) {
if (a.position < b.position)
return -1;
if (a.position > b.position)
return 1;
return 0;
});
dateArray.forEach(function(entry){
finalString += entry.value + divider;
});
// Slicing away the last applied divider
return finalString.slice(0, -1);
}
/**
* Get/set value.
*
* @param {Date} date (optional)
* @api public
*/
Datepicker.prototype.value = function(date) {
if(!date) {
if(!this.el.value.match(/\d{1,2}\/\d{1,2}\/\d{4}/))
return null;
var parts = this.el.value.split("/");
return new Date(parts[2], parts[1] - 1, parts[0]);
}
this.cal.select(date);
this.el.value = this.processDate(date);
this.el.focus();
this.hide();
this.emit('change', date);
return true;
}
/**
* Show popover
*
* @api public
*/
Datepicker.prototype.show = function() {
// Using old fashioned way of creating events
// as described on MDN: https://developer.mozilla.org/en-US/docs/Web/Guide/Events/Creating_and_triggering_events
// This way datepicker doesn't fail to show up on IE browsers
var ev = document.createEvent('Event');
ev.initEvent('click', true, true);
document.dispatchEvent(ev);
if (this.popover) return;
this.popover = new Popover(this.cal.el);
this.popover.classname = 'datepicker-popover popover';
this.popover.show(this.el);
event.bind(this.popover.el, 'click', function(e) { e.stopPropagation(); return false; });
}
/**
* Hide popover
*
* @api public
*/
Datepicker.prototype.hide = function() {
if (!this.popover) return;
this.popover.remove();
this.popover = null;
}
/**
* Handle input clicks.
*/
Datepicker.prototype.onclick = function(e){
e.stopPropagation();
this.show();
return false;
};
Datepicker.prototype.onkeydown = function(e){
switch (keyname(e.which)) {
case 'enter':
e.preventDefault();
this.onchange(e);
break;
case 'esc':
this.hide();
break;
}
};
/**
* Handle date changes.
*/
Datepicker.prototype.onchange = function(e){
var parts = this.el.value.split("/");
if(parts.length < 3)
return this.value(null);
var date = new Date(parts[2], parts[1] - 1, parts[0]);
this.value(date);
};