-
Notifications
You must be signed in to change notification settings - Fork 601
/
Copy pathdate-runtime.js
88 lines (74 loc) · 2.56 KB
/
date-runtime.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
define([
"./common/runtime-key",
"./common/validate/parameter-presence",
"./common/validate/parameter-type/date",
"./common/validate/parameter-type/string",
"./core-runtime",
"./date/format",
"./date/formatter-fn",
"./date/parse",
"./date/parser-fn",
"./date/tokenizer",
"./date/to-parts-formatter-fn",
"./number-runtime"
], function( runtimeKey, validateParameterPresence, validateParameterTypeDate,
validateParameterTypeString, Globalize, dateFormat, dateFormatterFn, dateParse, dateParserFn,
dateToPartsFormatterFn, dateTokenizer ) {
Globalize._dateFormat = dateFormat;
Globalize._dateFormatterFn = dateFormatterFn;
Globalize._dateParser = dateParse;
Globalize._dateParserFn = dateParserFn;
Globalize._dateTokenizer = dateTokenizer;
Globalize._dateToPartsFormatterFn = dateToPartsFormatterFn;
Globalize._validateParameterTypeDate = validateParameterTypeDate;
function optionsHasStyle( options ) {
return options.skeleton !== undefined ||
options.date !== undefined ||
options.time !== undefined ||
options.datetime !== undefined ||
options.raw !== undefined;
}
Globalize.dateFormatter =
Globalize.prototype.dateFormatter = function( options ) {
options = options || {};
if ( !optionsHasStyle( options ) ) {
options.skeleton = "yMd";
}
return Globalize[ runtimeKey( "dateFormatter", this._locale, [ options ] ) ];
};
Globalize.dateToPartsFormatter =
Globalize.prototype.dateToPartsFormatter = function( options ) {
options = options || {};
if ( !optionsHasStyle( options ) ) {
options.skeleton = "yMd";
}
return Globalize[ runtimeKey( "dateToPartsFormatter", this._locale, [ options ] ) ];
};
Globalize.dateParser =
Globalize.prototype.dateParser = function( options ) {
options = options || {};
if ( !optionsHasStyle( options ) ) {
options.skeleton = "yMd";
}
return Globalize[ runtimeKey( "dateParser", this._locale, [ options ] ) ];
};
Globalize.formatDate =
Globalize.prototype.formatDate = function( value, options ) {
validateParameterPresence( value, "value" );
validateParameterTypeDate( value, "value" );
return this.dateFormatter( options )( value );
};
Globalize.formatDateToParts =
Globalize.prototype.formatDateToParts = function( value, options ) {
validateParameterPresence( value, "value" );
validateParameterTypeDate( value, "value" );
return this.dateToPartsFormatter( options )( value );
};
Globalize.parseDate =
Globalize.prototype.parseDate = function( value, options ) {
validateParameterPresence( value, "value" );
validateParameterTypeString( value, "value" );
return this.dateParser( options )( value );
};
return Globalize;
});