-
Notifications
You must be signed in to change notification settings - Fork 284
Expand file tree
/
Copy pathDateComponentBase.ts
More file actions
397 lines (340 loc) · 9.76 KB
/
Copy pathDateComponentBase.ts
File metadata and controls
397 lines (340 loc) · 9.76 KB
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
import UI5Element from "@ui5/webcomponents-base/dist/UI5Element.js";
import jsxRenderer from "@ui5/webcomponents-base/dist/renderer/JsxRenderer.js";
import customElement from "@ui5/webcomponents-base/dist/decorators/customElement.js";
import property from "@ui5/webcomponents-base/dist/decorators/property.js";
import i18n from "@ui5/webcomponents-base/dist/decorators/i18n.js";
import type I18nBundle from "@ui5/webcomponents-base/dist/i18nBundle.js";
import { getCalendarType, getSecondaryCalendarType } from "@ui5/webcomponents-base/dist/config/CalendarType.js";
import DateFormat from "@ui5/webcomponents-localization/dist/DateFormat.js";
import getCachedLocaleDataInstance from "@ui5/webcomponents-localization/dist/getCachedLocaleDataInstance.js";
import type CalendarType from "@ui5/webcomponents-base/dist/types/CalendarType.js";
import getLocale from "@ui5/webcomponents-base/dist/locale/getLocale.js";
import CalendarDate from "@ui5/webcomponents-localization/dist/dates/CalendarDate.js";
import { getMaxCalendarDate, getMinCalendarDate } from "@ui5/webcomponents-localization/dist/dates/ExtremeDates.js";
import UI5Date from "@ui5/webcomponents-localization/dist/dates/UI5Date.js";
import type CalendarWeekNumbering from "./types/CalendarWeekNumbering.js";
/**
* @class
*
* Abstract class that provides common functionality for date-related components (day picker, month picker, year picker, calendar, date picker, date range picker, date time picker)
* This includes:
* - "languageAware: true" metadata setting, CLDR fetch and i18n initialization
* - common properties (primaryCalendar, minDate, maxDate and formatPattern) declaration and methods that operate on them
* - additional common methods
* @constructor
* @abstract
* @extends UI5Element
* @public
*/
@customElement({
languageAware: true,
cldr: true,
renderer: jsxRenderer,
})
class DateComponentBase extends UI5Element {
/**
* Sets a calendar type used for display.
* If not set, the calendar type of the global configuration is used.
* @default undefined
* @public
*/
@property()
primaryCalendarType?: `${CalendarType}`;
/**
* Defines the secondary calendar type.
* If not set, the calendar will only show the primary calendar type.
* @since 1.0.0-rc.16
* @default undefined
* @public
*/
@property()
secondaryCalendarType?: `${CalendarType}`;
/**
* Determines the format, displayed in the input field.
* @default undefined
* @deprecated Use displayFormat and valueFormat instead
* @public
*/
@property()
formatPattern?: string;
/**
* Determines the format, displayed in the input field.
* @default undefined
* @since 2.14.0
* @public
*/
@property()
displayFormat?: string;
/**
* Determines the format, used for the value attribute.
* @default undefined
* @since 2.14.0
* @public
*/
@property()
valueFormat?: string;
/**
* Determines the minimum date available for selection.
*
* **Note:** If the formatPattern property is not set, the minDate value must be provided in the ISO date format (yyyy-MM-dd).
* @default ""
* @since 1.0.0-rc.6
* @public
*/
@property()
minDate = "";
/**
* Determines the maximum date available for selection.
*
* **Note:** If the formatPattern property is not set, the maxDate value must be provided in the ISO date format (yyyy-MM-dd).
* @default ""
* @since 1.0.0-rc.6
* @public
*/
@property()
maxDate = "";
/**
* Defines how to calculate calendar weeks and first day of the week.
* If not set, the calendar will be displayed according to the currently set global configuration.
* @default "Default"
* @since 2.2.0
* @public
*/
@property()
calendarWeekNumbering: `${CalendarWeekNumbering}` = "Default";
@i18n("@ui5/webcomponents")
static i18nBundle?: I18nBundle;
/**
* Cached instance of DateFormat with a format pattern of "yyyy-MM-dd".
* Used by the getISOFormat method to avoid creating a new DateFormat instance on each call.
* @private
*/
_isoFormatInstance?: DateFormat;
constructor() {
super();
}
/**
* Checks if CLDR data is loaded and available for date formatting.
* @private
*/
_isCLDRReady(): boolean {
try {
// Try to get locale data - this will throw if CLDR is not loaded
const localeData = getCachedLocaleDataInstance(getLocale());
return !!localeData;
} catch (e) {
return false;
}
}
get _primaryCalendarType() {
const localeData = getCachedLocaleDataInstance(getLocale());
return this.primaryCalendarType || getCalendarType() || localeData.getPreferredCalendarType();
}
get _secondaryCalendarType() {
return this.secondaryCalendarType || getSecondaryCalendarType();
}
get _minDate() {
let minDate;
if (this.minDate) {
minDate = this._getMinMaxCalendarDateFromString(this.minDate);
}
return minDate || getMinCalendarDate(this._primaryCalendarType);
}
get _maxDate() {
let maxDate;
if (this.maxDate) {
maxDate = this._getMinMaxCalendarDateFromString(this.maxDate)!;
}
return maxDate || getMaxCalendarDate(this._primaryCalendarType);
}
get _formatPattern() {
return this.formatPattern || this.valueFormat || "medium"; // get from config
}
get _isPattern() {
return this._formatPattern !== "medium" && this._formatPattern !== "short" && this._formatPattern !== "long";
}
get _isValueFormatPattern() {
return this._valueFormat !== "medium" && this._valueFormat !== "short" && this._valueFormat !== "long";
}
get _isDisplayFormatPattern() {
return this._displayFormat !== "medium" && this._displayFormat !== "short" && this._displayFormat !== "long";
}
get hasSecondaryCalendarType() {
return !!this.secondaryCalendarType && this.secondaryCalendarType !== this.primaryCalendarType;
}
_getMinMaxCalendarDateFromString(date: string) {
const format = this.getFormat();
if (format && format.parse(date)) {
return this._getCalendarDateFromString(date);
}
const isoFormat = this.getISOFormat();
if (!isoFormat) {
// CLDR not loaded yet
return undefined;
}
const jsDate = isoFormat.parse(date) as Date;
if (jsDate) {
return CalendarDate.fromLocalJSDate(jsDate, this._primaryCalendarType);
}
}
_getCalendarDateFromString(value: string) {
const format = this.getValueFormat();
if (!format) {
// CLDR not loaded yet
return undefined;
}
const jsDate = format.parse(value) as Date;
if (jsDate) {
return CalendarDate.fromLocalJSDate(jsDate, this._primaryCalendarType);
}
}
_getCalendarDateFromStringDisplayValue(value: string) {
const format = this.getDisplayFormat();
if (!format) {
// CLDR not loaded yet
return undefined;
}
const jsDate = format.parse(value) as Date;
if (jsDate) {
return CalendarDate.fromLocalJSDate(jsDate, this._primaryCalendarType);
}
}
_getTimeStampFromString(value: string) {
const calDate = this._getCalendarDateFromString(value);
if (calDate) {
return calDate.toUTCJSDate().valueOf();
}
}
_getStringFromTimestamp(timestamp: number) {
if (!timestamp) {
return "";
}
const format = this.getFormat();
if (!format) {
// CLDR not loaded yet
return "";
}
const localDate = UI5Date.getInstance(timestamp);
return format.format(localDate, true);
}
_getDisplayStringFromTimestamp(timestamp: number) {
if (!timestamp) {
return "";
}
const format = this.getDisplayFormat();
if (!format) {
// CLDR not loaded yet
return "";
}
const localDate = UI5Date.getInstance(timestamp);
return format.format(localDate, true);
}
_getValueStringFromTimestamp(timestamp: number) {
if (!timestamp) {
return "";
}
const format = this.getValueFormat();
if (!format) {
// CLDR not loaded yet
return "";
}
const localDate = UI5Date.getInstance(timestamp);
return format.format(localDate, true);
}
getFormat(): DateFormat | null {
if (!this._isCLDRReady()) {
return null;
}
try {
return this._isPattern
? DateFormat.getDateInstance({
strictParsing: true,
pattern: this._formatPattern,
calendarType: this._primaryCalendarType,
})
: DateFormat.getDateInstance({
strictParsing: true,
style: this._formatPattern,
calendarType: this._primaryCalendarType,
});
} catch (e) {
return null;
}
}
get _displayFormat() {
if (this.displayFormat) {
return this.displayFormat;
}
return this._formatPattern;
}
get _valueFormat() {
if (this.valueFormat) {
return this.valueFormat;
}
if (this._formatPattern) {
return this._formatPattern;
}
return "";
}
getDisplayFormat(): DateFormat | null {
if (!this._isCLDRReady()) {
return null;
}
try {
return this._isDisplayFormatPattern
? DateFormat.getDateInstance({
strictParsing: true,
pattern: this._displayFormat,
calendarType: this._primaryCalendarType,
})
: DateFormat.getDateInstance({
strictParsing: true,
style: this._displayFormat,
calendarType: this._primaryCalendarType,
});
} catch (e) {
return null;
}
}
getValueFormat(): DateFormat | null {
if (!this._valueFormat) {
return this.getISOFormat();
}
if (!this._isCLDRReady()) {
return null;
}
try {
return this._isValueFormatPattern
? DateFormat.getDateInstance({
strictParsing: true,
pattern: this._valueFormat,
calendarType: this._primaryCalendarType,
})
: DateFormat.getDateInstance({
strictParsing: true,
style: this._valueFormat,
calendarType: this._primaryCalendarType,
});
} catch (e) {
return null;
}
}
getISOFormat(): DateFormat | null {
if (!this._isCLDRReady()) {
return null;
}
if (!this._isoFormatInstance) {
try {
this._isoFormatInstance = DateFormat.getDateInstance({
strictParsing: true,
pattern: "yyyy-MM-dd",
calendarType: this._primaryCalendarType,
});
} catch (e) {
return null;
}
}
return this._isoFormatInstance;
}
}
export default DateComponentBase;