This repository was archived by the owner on Feb 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDateTime.js
728 lines (726 loc) · 20.2 KB
/
DateTime.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
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
//-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
// Definition of DateTime.
Pot.update({
/**
* @lends Pot
*/
/**
* DateTime utilities.
*
* @param {*} x The timestamp.
* @return {Number} The timestamp at that time.
*
* @name Pot.DateTime
* @type Function
* @class
* @function
* @static
* @public
*/
DateTime : function(x) {
return +new Date(x);
}
});
update(Pot.DateTime, {
/**
* @lends Pot.DateTime
*/
/**
* Get the current time as milliseconds.
*
*
* @example
* var time = now(); // equals (new Date()).getTime();
* debug(time); // 1323446177282
*
*
* @return {Number} Return the current time as milliseconds.
*
* @type Function
* @function
* @static
* @public
*/
now : now,
/**
* Get the current UNIX timestamp.
*
* @return {Number} Return the current UNIX timestamp.
*
* @type Function
* @function
* @static
* @public
*/
time : function() {
return Math.round(now() / 1000);
},
/**
* Return the formatted date.
*
* That works the same as PHP's date function probably.
* (Refer the manual.)
* @link http://php.net/function.date
*
* Use a backslash '\\' if escape the next character.
*
* <pre>
* ------------------------------------------------
* Extended formats:
* - J : Japanese weekday (日 ~ 土)
* - o : Old Japanese Month (霜月, 水無月, etc.)
* ------------------------------------------------
* </pre>
*
*
* @example
* var result = Pot.DateTime.format('Y-m-d H:i:s');
* debug(result);
* // @results '2011-06-07 01:25:17'
*
*
* @example
* var result = Pot.DateTime.format('Y/m/d (J) H:i [\\o=o]');
* debug(result);
* // @results '2011/06/08 (水) 11:30 [o=水無月]'
*
*
* @example
* var result = Pot.DateTime.format(Pot.DateTime.format.RFC2822);
* debug(result);
* // @results 'Wed, 08 Jun 2011 02:34:21 +0900'
*
*
* @param {String} format A format string. (e.g. 'Y-m-d').
* @param {Date|Number|*} (date) (Optional) The specific timestamp.
* @return {String} Return the formatted date string.
*
* @name Pot.DateTime.format
* @type Function
* @class
* @function
* @static
* @public
*/
format : (function() {
/**
* @private
* @ignore
*/
var DateTimeFormatter = function() {};
update(DateTimeFormatter, {
/**
* @private
* @ignore
*/
TIMEZONE_MAPS : {
GMT : 0, // Greenwich Mean
UTC : 0, // Universal (Coordinated)
WET : 0, // Western European
WAT : -1 * 3600, // West Africa
AT : -2 * 3600, // Azores
NFT : -3 * 3600 - 1800, // Newfoundland
AST : -4 * 3600, // Atlantic Standard
EST : -5 * 3600, // Eastern Standard
CST : -6 * 3600, // Central Standard
MST : -7 * 3600, // Mountain Standard
PST : -8 * 3600, // Pacific Standard
YST : -9 * 3600, // Yukon Standard
HST : -10 * 3600, // Hawaii Standard
CAT : -10 * 3600, // Central Alaska
AHST : -10 * 3600, // Alaska-Hawaii Standard
NT : -11 * 3600, // Nome
IDLW : -12 * 3600, // International Date Line West
CET : +1 * 3600, // Central European
MET : +1 * 3600, // Middle European
MEWT : +1 * 3600, // Middle European Winter
SWT : +1 * 3600, // Swedish Winter
FWT : +1 * 3600, // French Winter
EET : +2 * 3600, // Eastern Europe, USSR Zone 1
BT : +3 * 3600, // Baghdad, USSR Zone 2
IT : +3 * 3600 + 1800, // Iran
ZP4 : +4 * 3600, // USSR Zone 3
ZP5 : +5 * 3600, // USSR Zone 4
IST : +5 * 3600 + 1800, // Indian Standard
ZP6 : +6 * 3600, // USSR Zone 5
SST : +7 * 3600, // South Sumatra, USSR Zone 6
WAST : +7 * 3600, // West Australian Standard
JT : +7 * 3600 + 1800, // Java
CCT : +8 * 3600, // China Coast, USSR Zone 7
JST : +9 * 3600, // Japan Standard, USSR Zone 8
CAST : +9 * 3600 + 1800, // Central Australian Standard
EAST : +10 * 3600, // Eastern Australian Standard
GST : +10 * 3600, // Guam Standard, USSR Zone 9
NZT : +12 * 3600, // New Zealand
NZST : +12 * 3600, // New Zealand Standard
IDLE : +12 * 3600 // International Date Line East
},
/**
* @private
* @ignore
*/
WEEK : {
en : [
'Sunday', 'Monday', 'Tuesday',
'Wednesday', 'Thursday', 'Friday', 'Saturday'
],
ja : [
'\u65e5', // 日
'\u6708', // 月
'\u706b', // 火
'\u6c34', // 水
'\u6728', // 木
'\u91d1', // 金
'\u571f' // 土
]
},
/**
* @private
* @ignore
*/
MONTH : {
en : [
'January', 'February', 'March', 'April',
'May', 'June', 'July', 'August',
'September', 'October', 'November', 'December'
],
ja : [
'\u7766\u6708', // 睦月
'\u5982\u6708', // 如月
'\u5f25\u751f', // 弥生
'\u536f\u6708', // 卯月
'\u7690\u6708', // 皐月
'\u6c34\u7121\u6708', // 水無月
'\u6587\u6708', // 文月
'\u8449\u6708', // 葉月
'\u9577\u6708', // 長月
'\u795e\u7121\u6708', // 神無月
'\u971c\u6708', // 霜月
'\u5e2b\u8d70' // 師走
]
},
/**
* @private
* @ignore
*/
DATE_SUFFIX : [
'st', 'nd', 'rd', 'th', 'th', 'th', 'th', 'th', 'th', 'th',
'th', 'th', 'th', 'th', 'th', 'th', 'th', 'th', 'th', 'th',
'st', 'nd', 'rd', 'th', 'th', 'th', 'th', 'th', 'th', 'th', 'st'
],
/**
* @private
* @ignore
*/
TRANSLATE_PATTERN : /(?:\\.|[a-zA-Z])/g
});
DateTimeFormatter.prototype = update(DateTimeFormatter.prototype, {
/**
* @private
* @ignore
*/
format : function(pattern, date) {
var result = '', that = this, t, fm, d, o, tr;
if (!isString(pattern)) {
t = pattern;
pattern = date;
date = t;
}
fm = stringify(pattern);
if (isDate(date)) {
d = date;
} else if (isNumeric(date) || (date && isString(date))) {
d = new Date(date);
} else {
d = new Date();
}
if (fm) {
o = {
self : d,
year : d.getFullYear(),
month : d.getMonth(),
date : d.getDate(),
day : d.getDay(),
hours : d.getHours(),
minutes : d.getMinutes(),
seconds : d.getSeconds(),
mseconds : d.getMilliseconds(),
timezone : d.getTimezoneOffset(),
time : d.getTime()
};
/**@ignore*/
tr = function(m) {
return that.translate(m, o);
};
result = fm.replace(DateTimeFormatter.TRANSLATE_PATTERN, tr);
}
return result;
},
/**
* @private
* @ignore
*/
translate : function(c, d) {
switch (c.charAt(0)) {
case '\\': return c.charAt(1);
case 'A': return this.meridiem(d.hours).toUpperCase();
case 'a': return this.meridiem(d.hours);
case 'c': return this.format(Pot.DateTime.format.ATOM);
case 'D': return DateTimeFormatter.WEEK.en[d.day].substr(0, 3);
case 'd': return this.padding(d.date);
case 'F': return DateTimeFormatter.MONTH.en[d.month];
case 'G': return d.hours;
case 'g': return this.to12Hour(d.hours);
case 'H': return this.padding(d.hours);
case 'h': return this.padding(this.to12Hour(d.hours));
case 'i': return this.padding(d.minutes);
case 'J': return DateTimeFormatter.WEEK.ja[d.day];
case 'j': return d.date;
case 'L': return String(this.isLeapYear(d.year) ? 1 : 0);
case 'l': return DateTimeFormatter.WEEK.en[d.day];
case 'M': return DateTimeFormatter.MONTH.en[d.month].substr(0, 3);
case 'm': return this.padding(d.month + 1);
case 'N': return this.isoDay(d.day);
case 'n': return d.month + 1;
case 'o': return DateTimeFormatter.MONTH.ja[d.month];
case 'O': return this.getTimezone(d.timezone);
case 'P': return this.getTimezone(d.timezone, true);
case 'r': return this.format(Pot.DateTime.format.RFC2822);
case 'S': return DateTimeFormatter.DATE_SUFFIX[d.date - 1];
case 's': return this.padding(d.seconds);
case 'T': return this.getTimezoneName(d.timezone);
case 't': return this.lastDayOfMonth(d.self);
case 'U': return Math.round(d.time / 1000);
case 'u': return this.padding(d.mseconds, 6);
case 'w': return d.day;
case 'Y': return d.year;
case 'y': return d.year.toString().substr(2, 2);
case 'z': return this.countDate(d.year, d.month, d.date);
case 'Z': return this.getTimezoneSec(d.timezone);
default : break;
}
return c;
},
/**
* @private
* @ignore
*/
padding : function(n, size, ch) {
var s = String(n), len = (size || 2) - 0, c = String(ch || 0);
while (s.length < len) {
s = c + s;
}
return s;
},
/**
* @private
* @ignore
*/
to12Hour : function(hours) {
return (hours > 12) ? hours - 12 : hours;
},
/**
* @private
* @ignore
*/
meridiem : function(hours) {
return (((hours - 0) < 12) ? 'a' : 'p') + 'm';
},
/**
* @private
* @ignore
*/
isoDay : function(day) {
return ((day - 0) === 0) ? '7' : day;
},
/**
* @private
* @ignore
*/
lastDayOfMonth : function(date) {
var t = new Date(date.getFullYear(), date.getMonth() + 1, 1);
t.setTime(t.getTime() - 1);
return t.getDate();
},
/**
* @private
* @ignore
*/
isLeapYear : function(year) {
var d = new Date(year, 0, 1), sum = 0, i;
for (i = 0; i < 12; i++) {
d.setMonth(i);
sum += this.lastDayOfMonth(d);
}
return sum != 365;
},
/**
* @private
* @ignore
*/
countDate : function(year, month, date) {
var d = new Date(year, 0, 1), sum = -1, i, max = (month - 0);
for (i = 0; i < max; i++) {
d.setMonth(i);
sum += this.lastDayOfMonth(d);
}
return sum + date;
},
/**
* @private
* @ignore
*/
getTimezone : function(offset, colon) {
var o = (offset - 0) || 0,
a = Math.abs(o),
sign = (o < 0) ? '+' : '-';
return [
sign,
this.padding(Math.floor(a / 60)),
colon ? ':' : '',
this.padding(a % 60)
].join('');
},
/**
* @private
* @ignore
*/
getTimezoneSec : function(offset) {
var o = (offset - 0) || 0;
return ((o < 0) ? '' : '-') + Math.abs(o * 60);
},
/**
* @private
* @ignore
*/
getTimezoneName : function(offset) {
var result, name,
maps = DateTimeFormatter.TIMEZONE_MAPS;
def = maps[1],
o = (offset - 0) || 0;
time = Math.floor(-o / 60 * 3600);
if (time === 0) {
result = def;
} else {
for (name in maps) {
if (maps[name] === time) {
result = name;
break;
}
}
}
return result || def;
}
});
return update(function(/*format[, date]*/) {
var d = new DateTimeFormatter();
return d.format.apply(d, arguments);
}, {
/**
* @lends Pot.DateTime.format
*/
/**
* A constant string of the date format for ATOM.
*
* @type String
* @const
* @static
* @public
*/
ATOM : 'Y-m-d\\TH:i:sP',
/**
* A constant string of the date format for COOKIE.
*
* @type String
* @const
* @static
* @public
*/
COOKIE : 'l, d-M-y H:i:s T',
/**
* A constant string of the date format for ISO8601.
*
* @type String
* @const
* @static
* @public
*/
ISO8601 : 'Y-m-d\\TH:i:sO',
/**
* A constant string of the date format for RFC822.
*
* @type String
* @const
* @static
* @public
*/
RFC822 : 'D, d M y H:i:s O',
/**
* A constant string of the date format for RFC850.
*
* @type String
* @const
* @static
* @public
*/
RFC850 : 'l, d-M-y H:i:s T',
/**
* A constant string of the date format for RFC1036.
*
* @type String
* @const
* @static
* @public
*/
RFC1036 : 'D, d M y H:i:s O',
/**
* A constant string of the date format for RFC1123.
*
* @type String
* @const
* @static
* @public
*/
RFC1123 : 'D, d M Y H:i:s O',
/**
* A constant string of the date format for RFC2822.
*
* @type String
* @const
* @static
* @public
*/
RFC2822 : 'D, d M Y H:i:s O',
/**
* A constant string of the date format for RFC3339.
*
* @type String
* @const
* @static
* @public
*/
RFC3339 : 'Y-m-d\\TH:i:sP',
/**
* A constant string of the date format for RSS.
*
* @type String
* @const
* @static
* @public
*/
RSS : 'D, d M Y H:i:s O',
/**
* A constant string of the date format for W3C.
*
* @type String
* @const
* @static
* @public
*/
W3C : 'Y-m-d\\TH:i:sP'
});
}()),
/**
* Return the formatted relative date string.
*
*
* @example
* debug(Pot.prettyDate('Fri Mar 16 2012 06:42:50 GMT+0900'));
* // @results e.g. 'just now'
* debug(Pot.prettyDate('Fri Mar 16 2012 08:42:50 GMT+0900'));
* // @results e.g. 'an hour ago'
* debug(Pot.prettyDate('Fri Mar 16 2012 00:42:50 GMT+0900'));
* // @results e.g. '6 hours ago'
*
*
* @example
* debug(Pot.prettyDate(new Date().getTime() + 10));
* // @results e.g. 'just now'
* debug(Pot.prettyDate(new Date().getTime() - 1000 * 60 - 10));
* // @results e.g. 'a minute ago'
* debug(Pot.prettyDate(new Date().getTime() - 1000 * 60 * 60 - 10));
* // @results e.g. 'an hour ago'
* debug(Pot.prettyDate(new Date().getTime() - 1000 * 60 * 60 * 24 - 10));
* // @results e.g. 'yesterday'
* debug(
* Pot.prettyDate(new Date().getTime() - 1000 * 60 * 60 * 24 * 7 - 10)
* );
* // @results e.g. 'last week'
* debug(Pot.prettyDate(new Date().getTime() + 1000 * 60 + 10));
* // @results e.g. 'a minute from now'
* debug(Pot.prettyDate(new Date().getTime() + 1000 * 60 * 60 + 10));
* // @results e.g. 'an hour from now'
* debug(Pot.prettyDate(new Date().getTime() + 1000 * 60 * 60 * 24 + 10));
* // @results e.g. 'tomorrow'
* debug(
* Pot.prettyDate(new Date().getTime() + 1000 * 60 * 60 * 24 * 7 + 10)
* );
* // @results e.g. 'next week'
*
*
* @param {Date|Number|*} date The specific timestamp.
* @param {String} (lang) (optional)The language (default='en').
* @return {String} Return the formatted date string.
*
* @type Function
* @function
* @static
* @public
*/
prettyDate : (function() {
var
MINUTE = 60,
HOUR = 60 * MINUTE,
DAY = 24 * HOUR,
WEEK = 7 * DAY,
MONTH = 4 * WEEK,
YEAR = 365 * DAY,
CENTURY = 100 * YEAR,
isJa = /^j[ap]/i,
suffix = {
past : {en : 'ago', ja : '\u524d'}, // 前
future : {en : 'from now', ja : '\u5f8c'} // 後
},
glue = {en : ' ', ja : ''},
formats = [
[
MINUTE,
{en : 'just now', ja : '\u305f\u3063\u305f\u4eca'}, // たった今
1
],
[
2 * MINUTE,
{
en : 'a minute ' + suffix.past.en,
ja : '1\u5206' + suffix.past.ja // 1分
},
{
en : 'a minute ' + suffix.future.en,
ja : '1\u5206' + suffix.future.ja // 1分
}
],
[
HOUR,
{en : 'minutes', ja : '\u5206'}, // 分
MINUTE
],
[
2 * HOUR,
{
en : 'an hour ' + suffix.past.en,
ja : '1\u6642\u9593' + suffix.past.ja // 1時間
},
{
en : 'an hour ' + suffix.future.en,
ja : '1\u6642\u9593' + suffix.future.ja // 1時間
}
],
[
DAY,
{en : 'hours', ja : '\u6642\u9593'}, // 時間
HOUR
],
[
2 * DAY,
{en : 'yesterday', ja : '\u6628\u65e5'}, // 昨日
{en : 'tomorrow', ja : '\u660e\u65e5'} // 明日
],
[
WEEK,
{en : 'days', ja : '\u65e5'}, // 日
DAY
],
[
2 * WEEK,
{en : 'last week', ja : '\u5148\u9031'}, // 先週
{en : 'next week', ja : '\u6765\u9031'} // 来週
],
[
MONTH,
{en : 'weeks', ja : '\u9031\u9593'}, // 週間
WEEK
],
[
2 * MONTH,
{en : 'last month', ja : '\u5148\u6708'}, // 先月
{en : 'next month', ja : '\u6765\u6708'} // 来月
],
[
YEAR,
{en : 'months', ja : '\u30f6\u6708'}, // ヶ月
MONTH
],
[
2 * YEAR,
{en : 'last year', ja : '\u53bb\u5e74'}, // 去年
{en : 'next year', ja : '\u6765\u5e74'} // 来年
],
[
CENTURY,
{en : 'years', ja : '\u5e74'}, // 年
YEAR
],
[
2 * CENTURY,
{en : 'last century', ja : '\u524d\u4e16\u7d00'}, // 前世紀
{en : 'next century', ja : '\u6765\u4e16\u7d00'} // 来世紀
],
[
Number.MAX_VALUE,
{en : 'centuries', ja : '\u4e16\u7d00'}, // 世紀
CENTURY
]
],
/**@ignore*/
relativeDate = function(date, language) {
var result = '', d, seconds, tail, index, i = 0, f,
lang = isJa.test(language) ? 'ja' : 'en';
if (isDate(date)) {
d = date;
} else if (isNumeric(date) || (date && isString(date))) {
d = new Date(date);
} else {
d = new Date();
}
seconds = (new Date - d.getTime()) / 1000;
if (seconds < 0) {
seconds = Math.abs(seconds);
tail = suffix.future[lang];
index = 2;
} else {
tail = suffix.past[lang];
index = 1;
}
while ((f = formats[i++])) {
if (seconds < f[0]) {
if (isObject(f[2])) {
result = f[index][lang];
} else if (i > 1) {
result = [
Math.floor(seconds / f[2]),
f[1][lang],
tail
].join(glue[lang]);
} else {
result = f[1][lang];
}
break;
}
}
return result;
};
each(['en', 'ja'], function(lang) {
/**@ignore*/
relativeDate[lang] = function(date) {
return relativeDate(date, lang);
};
});
return relativeDate;
}())
});
// Update Pot object.
Pot.update({
time : Pot.DateTime.time,
date : Pot.DateTime.format,
prettyDate : Pot.DateTime.prettyDate
});