-
Notifications
You must be signed in to change notification settings - Fork 83
/
vaadin-date-picker-mixin.js
1241 lines (1105 loc) · 35.7 KB
/
vaadin-date-picker-mixin.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
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* @license
* Copyright (c) 2016 - 2024 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
*/
import { hideOthers } from '@vaadin/a11y-base/src/aria-hidden.js';
import { DelegateFocusMixin } from '@vaadin/a11y-base/src/delegate-focus-mixin.js';
import { isKeyboardActive } from '@vaadin/a11y-base/src/focus-utils.js';
import { KeyboardMixin } from '@vaadin/a11y-base/src/keyboard-mixin.js';
import { isIOS } from '@vaadin/component-base/src/browser-utils.js';
import { ControllerMixin } from '@vaadin/component-base/src/controller-mixin.js';
import { MediaQueryController } from '@vaadin/component-base/src/media-query-controller.js';
import { OverlayClassMixin } from '@vaadin/component-base/src/overlay-class-mixin.js';
import { InputConstraintsMixin } from '@vaadin/field-base/src/input-constraints-mixin.js';
import { VirtualKeyboardController } from '@vaadin/field-base/src/virtual-keyboard-controller.js';
import {
dateAllowed,
dateEquals,
extractDateParts,
formatISODate,
getAdjustedYear,
getClosestDate,
parseDate,
} from './vaadin-date-picker-helper.js';
export const datePickerI18nDefaults = Object.freeze({
monthNames: [
'January',
'February',
'March',
'April',
'May',
'June',
'July',
'August',
'September',
'October',
'November',
'December',
],
weekdays: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
weekdaysShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
firstDayOfWeek: 0,
today: 'Today',
cancel: 'Cancel',
referenceDate: '',
formatDate(d) {
const yearStr = String(d.year).replace(/\d+/u, (y) => '0000'.substr(y.length) + y);
return [d.month + 1, d.day, yearStr].join('/');
},
parseDate(text) {
const parts = text.split('/');
const today = new Date();
let date,
month = today.getMonth(),
year = today.getFullYear();
if (parts.length === 3) {
month = parseInt(parts[0]) - 1;
date = parseInt(parts[1]);
year = parseInt(parts[2]);
if (parts[2].length < 3 && year >= 0) {
const usedReferenceDate = this.referenceDate ? parseDate(this.referenceDate) : new Date();
year = getAdjustedYear(usedReferenceDate, year, month, date);
}
} else if (parts.length === 2) {
month = parseInt(parts[0]) - 1;
date = parseInt(parts[1]);
} else if (parts.length === 1) {
date = parseInt(parts[0]);
}
if (date !== undefined) {
return { day: date, month, year };
}
},
formatTitle: (monthName, fullYear) => {
return `${monthName} ${fullYear}`;
},
});
/**
* @polymerMixin
* @mixes ControllerMixin
* @mixes DelegateFocusMixin
* @mixes InputConstraintsMixin
* @mixes KeyboardMixin
* @mixes OverlayClassMixin
* @param {function(new:HTMLElement)} subclass
*/
export const DatePickerMixin = (subclass) =>
class DatePickerMixinClass extends OverlayClassMixin(
ControllerMixin(DelegateFocusMixin(InputConstraintsMixin(KeyboardMixin(subclass)))),
) {
static get properties() {
return {
/**
* The current selected date.
* @type {Date | undefined}
* @protected
*/
_selectedDate: {
type: Object,
sync: true,
},
/**
* @type {Date | undefined}
* @protected
*/
_focusedDate: {
type: Object,
sync: true,
},
/**
* Selected date.
*
* Supported date formats:
* - ISO 8601 `"YYYY-MM-DD"` (default)
* - 6-digit extended ISO 8601 `"+YYYYYY-MM-DD"`, `"-YYYYYY-MM-DD"`
*
* @type {string}
*/
value: {
type: String,
notify: true,
value: '',
sync: true,
},
/**
* Date which should be visible when there is no value selected.
*
* The same date formats as for the `value` property are supported.
* @attr {string} initial-position
*/
initialPosition: String,
/**
* Set true to open the date selector overlay.
*/
opened: {
type: Boolean,
reflectToAttribute: true,
notify: true,
observer: '_openedChanged',
sync: true,
},
/**
* Set true to prevent the overlay from opening automatically.
* @attr {boolean} auto-open-disabled
*/
autoOpenDisabled: Boolean,
/**
* Set true to display ISO-8601 week numbers in the calendar. Notice that
* displaying week numbers is only supported when `i18n.firstDayOfWeek`
* is 1 (Monday).
* @attr {boolean} show-week-numbers
*/
showWeekNumbers: {
type: Boolean,
value: false,
sync: true,
},
/**
* @type {boolean}
* @protected
*/
_fullscreen: {
type: Boolean,
value: false,
sync: true,
},
/**
* @type {string}
* @protected
*/
_fullscreenMediaQuery: {
value: '(max-width: 420px), (max-height: 420px)',
},
/**
* The object used to localize this component.
* To change the default localization, replace the entire
* `i18n` object with a custom one.
*
* To update individual properties, extend the existing i18n object like so:
* ```
* datePicker.i18n = { ...datePicker.i18n, {
* formatDate: date => { ... },
* parseDate: value => { ... },
* }};
* ```
*
* The object has the following JSON structure and default values:
*
* ```
* {
* // An array with the full names of months starting
* // with January.
* monthNames: [
* 'January', 'February', 'March', 'April', 'May',
* 'June', 'July', 'August', 'September',
* 'October', 'November', 'December'
* ],
*
* // An array of weekday names starting with Sunday. Used
* // in screen reader announcements.
* weekdays: [
* 'Sunday', 'Monday', 'Tuesday', 'Wednesday',
* 'Thursday', 'Friday', 'Saturday'
* ],
*
* // An array of short weekday names starting with Sunday.
* // Displayed in the calendar.
* weekdaysShort: [
* 'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'
* ],
*
* // An integer indicating the first day of the week
* // (0 = Sunday, 1 = Monday, etc.).
* firstDayOfWeek: 0,
*
* // Translation of the Today shortcut button text.
* today: 'Today',
*
* // Translation of the Cancel button text.
* cancel: 'Cancel',
*
* // Used for adjusting the year value when parsing dates with short years.
* // The year values between 0 and 99 are evaluated and adjusted.
* // Example: for a referenceDate of 1970-10-30;
* // dateToBeParsed: 40-10-30, result: 1940-10-30
* // dateToBeParsed: 80-10-30, result: 1980-10-30
* // dateToBeParsed: 10-10-30, result: 2010-10-30
* // Supported date format: ISO 8601 `"YYYY-MM-DD"` (default)
* // The default value is the current date.
* referenceDate: '',
*
* // A function to format given `Object` as
* // date string. Object is in the format `{ day: ..., month: ..., year: ... }`
* // Note: The argument month is 0-based. This means that January = 0 and December = 11.
* formatDate: d => {
* // returns a string representation of the given
* // object in 'MM/DD/YYYY' -format
* },
*
* // A function to parse the given text to an `Object` in the format `{ day: ..., month: ..., year: ... }`.
* // Must properly parse (at least) text formatted by `formatDate`.
* // Setting the property to null will disable keyboard input feature.
* // Note: The argument month is 0-based. This means that January = 0 and December = 11.
* parseDate: text => {
* // Parses a string in 'MM/DD/YY', 'MM/DD' or 'DD' -format to
* // an `Object` in the format `{ day: ..., month: ..., year: ... }`.
* }
*
* // A function to format given `monthName` and
* // `fullYear` integer as calendar title string.
* formatTitle: (monthName, fullYear) => {
* return monthName + ' ' + fullYear;
* }
* }
* ```
*
* @type {!DatePickerI18n}
* @default {English/US}
*/
i18n: {
type: Object,
sync: true,
value: () => ({ ...datePickerI18nDefaults }),
},
/**
* The earliest date that can be selected. All earlier dates will be disabled.
*
* Supported date formats:
* - ISO 8601 `"YYYY-MM-DD"` (default)
* - 6-digit extended ISO 8601 `"+YYYYYY-MM-DD"`, `"-YYYYYY-MM-DD"`
*
* @type {string | undefined}
*/
min: {
type: String,
sync: true,
},
/**
* The latest date that can be selected. All later dates will be disabled.
*
* Supported date formats:
* - ISO 8601 `"YYYY-MM-DD"` (default)
* - 6-digit extended ISO 8601 `"+YYYYYY-MM-DD"`, `"-YYYYYY-MM-DD"`
*
* @type {string | undefined}
*/
max: {
type: String,
sync: true,
},
/**
* A function to be used to determine whether the user can select a given date.
* Receives a `DatePickerDate` object of the date to be selected and should return a
* boolean.
*
* @type {function(DatePickerDate): boolean | undefined}
*/
isDateDisabled: {
type: Function,
},
/**
* The earliest date that can be selected. All earlier dates will be disabled.
* @type {Date | undefined}
* @protected
*/
_minDate: {
type: Date,
computed: '__computeMinOrMaxDate(min)',
sync: true,
},
/**
* The latest date that can be selected. All later dates will be disabled.
* @type {Date | undefined}
* @protected
*/
_maxDate: {
type: Date,
computed: '__computeMinOrMaxDate(max)',
sync: true,
},
/** @private */
_noInput: {
type: Boolean,
computed: '_isNoInput(inputElement, _fullscreen, _ios, i18n, opened, autoOpenDisabled)',
},
/** @private */
_ios: {
type: Boolean,
value: isIOS,
},
/** @private */
_focusOverlayOnOpen: Boolean,
/** @private */
_overlayContent: {
type: Object,
sync: true,
},
/**
* In date-picker, unlike other components extending `InputMixin`,
* the property indicates true only if the input has been entered by the user.
* In the case of programmatic changes, the property is reset to false.
* Read more about why this workaround is needed:
* https://github.com/vaadin/web-components/issues/5639
*
* @protected
* @override
*/
_hasInputValue: {
type: Boolean,
},
};
}
static get observers() {
return [
'_selectedDateChanged(_selectedDate, i18n)',
'_focusedDateChanged(_focusedDate, i18n)',
'__updateOverlayContent(_overlayContent, i18n, label, _minDate, _maxDate, _focusedDate, _selectedDate, showWeekNumbers, isDateDisabled)',
'__updateOverlayContentTheme(_overlayContent, _theme)',
'__updateOverlayContentFullScreen(_overlayContent, _fullscreen)',
];
}
static get constraints() {
return [...super.constraints, 'min', 'max'];
}
constructor() {
super();
this._boundOnClick = this._onClick.bind(this);
this._boundOnScroll = this._onScroll.bind(this);
this._boundOverlayRenderer = this._overlayRenderer.bind(this);
}
/**
* @override
* @protected
*/
get _inputElementValue() {
return super._inputElementValue;
}
/**
* The setter is overridden to reset the `_hasInputValue` property
* to false when the input element's value is updated programmatically.
* In date-picker, `_hasInputValue` is supposed to indicate true only
* if the input has been entered by the user.
* Read more about why this workaround is needed:
* https://github.com/vaadin/web-components/issues/5639
*
* @override
* @protected
*/
set _inputElementValue(value) {
super._inputElementValue = value;
this._hasInputValue = false;
}
/**
* Override a getter from `InputControlMixin` to make it optional
* and to prevent warning when a clear button is missing,
* for example when using <vaadin-date-picker-light>.
* @protected
* @return {Element | null | undefined}
*/
get clearElement() {
return null;
}
/** @private */
get _nativeInput() {
if (this.inputElement) {
// TODO: support focusElement for backwards compatibility
return this.inputElement.focusElement || this.inputElement;
}
return null;
}
/**
* The input element's value when it cannot be parsed as a date, and an empty string otherwise.
*
* @return {string}
* @private
*/
get __unparsableValue() {
if (!this._inputElementValue || this.__parseDate(this._inputElementValue)) {
return '';
}
return this._inputElementValue;
}
/**
* Override an event listener from `DelegateFocusMixin`
* @protected
*/
_onFocus(event) {
super._onFocus(event);
if (this._noInput && !isKeyboardActive()) {
event.target.blur();
}
}
/**
* Override an event listener from `DelegateFocusMixin`
* @protected
*/
_onBlur(event) {
super._onBlur(event);
if (!this.opened) {
this.__commitParsedOrFocusedDate();
// Do not validate when focusout is caused by document
// losing focus, which happens on browser tab switch.
if (document.hasFocus()) {
this._requestValidation();
}
}
}
/** @protected */
ready() {
super.ready();
this.addEventListener('click', this._boundOnClick);
this.addController(
new MediaQueryController(this._fullscreenMediaQuery, (matches) => {
this._fullscreen = matches;
}),
);
this.addController(new VirtualKeyboardController(this));
const overlay = this.$.overlay;
this._overlayElement = overlay;
overlay.renderer = this._boundOverlayRenderer;
this.addEventListener('mousedown', () => this.__bringToFront());
this.addEventListener('touchstart', () => this.__bringToFront());
}
/** @protected */
disconnectedCallback() {
super.disconnectedCallback();
this.opened = false;
}
/**
* Opens the dropdown.
*/
open() {
if (!this.disabled && !this.readonly) {
this.opened = true;
}
}
/**
* Closes the dropdown.
*/
close() {
this.$.overlay.close();
}
/** @private */
_overlayRenderer(root) {
if (root.firstChild) {
return;
}
// Create and store document content element
const content = document.createElement('vaadin-date-picker-overlay-content');
root.appendChild(content);
this._overlayContent = content;
content.addEventListener('close', () => {
this._close();
});
content.addEventListener('focus-input', this._focusAndSelect.bind(this));
// User confirmed selected date by clicking the calendar.
content.addEventListener('date-tap', (e) => {
this.__commitDate(e.detail.date);
this._close();
});
// User confirmed selected date by pressing Enter, Space, or Today.
content.addEventListener('date-selected', (e) => {
this.__commitDate(e.detail.date);
});
// Set focus-ring attribute when moving focus to the overlay
// by pressing Tab or arrow key, after opening it on click.
content.addEventListener('focusin', () => {
if (this._keyboardActive) {
this._setFocused(true);
}
});
content.addEventListener('focusout', (event) => {
if (this._shouldRemoveFocus(event)) {
this._setFocused(false);
}
});
// Two-way data binding for `focusedDate` property
content.addEventListener('focused-date-changed', (e) => {
this._focusedDate = e.detail.value;
});
content.addEventListener('click', (e) => e.stopPropagation());
}
/**
* @param {string} dateString
* @private
*/
__parseDate(dateString) {
if (!this.i18n.parseDate) {
return;
}
let dateObject = this.i18n.parseDate(dateString);
if (dateObject) {
dateObject = parseDate(`${dateObject.year}-${dateObject.month + 1}-${dateObject.day}`);
}
if (dateObject && !isNaN(dateObject.getTime())) {
return dateObject;
}
}
/**
* @param {Date} dateObject
* @private
*/
__formatDate(dateObject) {
if (this.i18n.formatDate) {
return this.i18n.formatDate(extractDateParts(dateObject));
}
}
/**
* Returns true if the current input value satisfies all constraints (if any)
*
* Override the `checkValidity` method for custom validations.
*
* @return {boolean} True if the value is valid
*/
checkValidity() {
const inputValue = this._inputElementValue;
const inputValid = !inputValue || (!!this._selectedDate && inputValue === this.__formatDate(this._selectedDate));
const isDateValid =
!this._selectedDate || dateAllowed(this._selectedDate, this._minDate, this._maxDate, this.isDateDisabled);
let inputValidity = true;
if (this.inputElement && this.inputElement.checkValidity) {
inputValidity = this.inputElement.checkValidity();
}
return inputValid && isDateValid && inputValidity;
}
/**
* Override method inherited from `FocusMixin`
* to not call `_setFocused(true)` when focus
* is restored after closing overlay on click,
* and to avoid removing `focus-ring` attribute.
*
* @param {!FocusEvent} _event
* @return {boolean}
* @protected
* @override
*/
_shouldSetFocus(_event) {
return !this._shouldKeepFocusRing;
}
/**
* Override method inherited from `FocusMixin`
* to prevent removing the `focused` attribute:
* - when moving focus to the overlay content,
* - when closing on date click / outside click.
*
* @param {FocusEvent} event
* @return {boolean}
* @protected
* @override
*/
_shouldRemoveFocus(event) {
// Remove the focused state when clicking outside on a focusable element that is deliberately
// made targetable with pointer-events: auto, such as the time-picker in the date-time-picker.
// In this scenario, focus will move straight to that element and the closing overlay won't
// attempt to restore focus to the input.
const { relatedTarget } = event;
if (
this.opened &&
relatedTarget !== null &&
relatedTarget !== document.body &&
!this.contains(relatedTarget) &&
!this._overlayContent.contains(relatedTarget)
) {
return true;
}
return !this.opened;
}
/**
* Override method inherited from `FocusMixin`
* to store the `focus-ring` state to restore
* it later when closing on outside click.
*
* @param {boolean} focused
* @protected
* @override
*/
_setFocused(focused) {
super._setFocused(focused);
this._shouldKeepFocusRing = focused && this._keyboardActive;
}
/**
* Depending on the nature of the value change that has occurred since
* the last commit attempt, triggers validation and fires an event:
*
* Value change | Event
* :------------------------|:------------------
* empty => parsable | change
* empty => unparsable | unparsable-change
* parsable => empty | change
* parsable => parsable | change
* parsable => unparsable | change
* unparsable => empty | unparsable-change
* unparsable => parsable | change
* unparsable => unparsable | unparsable-change
*
* @private
*/
__commitValueChange() {
const unparsableValue = this.__unparsableValue;
if (this.__committedValue !== this.value) {
this._requestValidation();
this.dispatchEvent(new CustomEvent('change', { bubbles: true }));
} else if (this.__committedUnparsableValue !== unparsableValue) {
this._requestValidation();
this.dispatchEvent(new CustomEvent('unparsable-change'));
}
this.__committedValue = this.value;
this.__committedUnparsableValue = unparsableValue;
}
/**
* Sets the given date as the value and commits it.
*
* @param {Date} date
* @private
*/
__commitDate(date) {
// Prevent the value observer from treating the following value change
// as initiated programmatically by the developer, and therefore
// from automatically committing it without a change event.
this.__keepCommittedValue = true;
this._selectedDate = date;
this.__keepCommittedValue = false;
this.__commitValueChange();
}
/** @private */
_close() {
this._focus();
this.close();
}
/** @private */
__bringToFront() {
requestAnimationFrame(() => {
this.$.overlay.bringToFront();
});
}
/** @private */
// eslint-disable-next-line @typescript-eslint/max-params
_isNoInput(inputElement, fullscreen, ios, i18n, opened, autoOpenDisabled) {
// On fullscreen mode, text input is disabled if auto-open isn't disabled or
// whenever the dropdown is opened
const noInputOnFullscreenMode = fullscreen && (!autoOpenDisabled || opened);
// On iOS, text input is disabled whenever the dropdown is opened, because
// the virtual keyboard doesn't affect the viewport metrics and thus the
// dropdown could get covered by the keyboard.
const noInputOnIos = ios && opened;
return !inputElement || noInputOnFullscreenMode || noInputOnIos || !i18n.parseDate;
}
/** @private */
_formatISO(date) {
return formatISODate(date);
}
/** @protected */
_inputElementChanged(input) {
super._inputElementChanged(input);
if (input) {
input.autocomplete = 'off';
input.setAttribute('role', 'combobox');
input.setAttribute('aria-haspopup', 'dialog');
input.setAttribute('aria-expanded', !!this.opened);
this._applyInputValue(this._selectedDate);
}
}
/** @protected */
_openedChanged(opened) {
if (this.inputElement) {
this.inputElement.setAttribute('aria-expanded', opened);
}
}
/** @private */
_selectedDateChanged(selectedDate, i18n) {
if (selectedDate === undefined || i18n === undefined) {
return;
}
if (!this.__keepInputValue) {
this._applyInputValue(selectedDate);
}
this.value = this._formatISO(selectedDate);
this._ignoreFocusedDateChange = true;
this._focusedDate = selectedDate;
this._ignoreFocusedDateChange = false;
}
/** @private */
_focusedDateChanged(focusedDate, i18n) {
if (focusedDate === undefined || i18n === undefined) {
return;
}
if (!this._ignoreFocusedDateChange && !this._noInput) {
this._applyInputValue(focusedDate);
}
}
/**
* Override the value observer from `InputMixin` to implement custom
* handling of the `value` property. The date-picker doesn't forward
* the value directly to the input like the default implementation of `InputMixin`.
* Instead, it parses the value into a date, puts it in `_selectedDate` which
* is then displayed in the input with respect to the specified date format.
*
* @param {string | undefined} value
* @param {string | undefined} oldValue
* @protected
* @override
*/
_valueChanged(value, oldValue) {
const newDate = parseDate(value);
if (value && !newDate) {
// The new value cannot be parsed, revert the old value.
this.value = oldValue;
return;
}
if (value) {
if (!dateEquals(this._selectedDate, newDate)) {
// Update the date instance only if the date has actually changed.
this._selectedDate = newDate;
if (oldValue !== undefined) {
// Validate only if `value` changes after initialization.
this._requestValidation();
}
}
} else {
this._selectedDate = null;
}
if (!this.__keepCommittedValue) {
this.__committedValue = this.value;
this.__committedUnparsableValue = '';
}
this._toggleHasValue(this._hasValue);
}
/** @private */
// eslint-disable-next-line @typescript-eslint/max-params
__updateOverlayContent(
overlayContent,
i18n,
label,
minDate,
maxDate,
focusedDate,
selectedDate,
showWeekNumbers,
isDateDisabled,
) {
if (overlayContent) {
overlayContent.i18n = i18n;
overlayContent.label = label;
overlayContent.minDate = minDate;
overlayContent.maxDate = maxDate;
overlayContent.focusedDate = focusedDate;
overlayContent.selectedDate = selectedDate;
overlayContent.showWeekNumbers = showWeekNumbers;
overlayContent.isDateDisabled = isDateDisabled;
}
}
/** @private */
__updateOverlayContentTheme(overlayContent, theme) {
if (overlayContent) {
if (theme) {
overlayContent.setAttribute('theme', theme);
} else {
overlayContent.removeAttribute('theme');
}
}
}
/** @private */
__updateOverlayContentFullScreen(overlayContent, fullscreen) {
if (overlayContent) {
overlayContent.toggleAttribute('fullscreen', fullscreen);
}
}
/** @protected */
_onOverlayEscapePress() {
this._focusedDate = this._selectedDate;
this._closedByEscape = true;
this._close();
this._closedByEscape = false;
}
/** @protected */
_onOverlayOpened() {
const content = this._overlayContent;
content.reset();
// Detect which date to show
const initialPosition = this._getInitialPosition();
content.initialPosition = initialPosition;
// Scroll the date into view
const scrollFocusDate = content.focusedDate || initialPosition;
content.scrollToDate(scrollFocusDate);
// Ensure the date is focused
this._ignoreFocusedDateChange = true;
content.focusedDate = scrollFocusDate;
this._ignoreFocusedDateChange = false;
window.addEventListener('scroll', this._boundOnScroll, true);
if (this._focusOverlayOnOpen) {
content.focusDateElement();
this._focusOverlayOnOpen = false;
} else {
this._focus();
}
const input = this._nativeInput;
if (this._noInput && input) {
input.blur();
this._overlayContent.focusDateElement();
}
const focusables = this._noInput ? content : [input, content];
this.__showOthers = hideOthers(focusables);
}
/** @private */
_getInitialPosition() {
const parsedInitialPosition = parseDate(this.initialPosition);
const initialPosition =
this._selectedDate || this._overlayContent.initialPosition || parsedInitialPosition || new Date();
return parsedInitialPosition || dateAllowed(initialPosition, this._minDate, this._maxDate, this.isDateDisabled)
? initialPosition
: this._minDate || this._maxDate
? getClosestDate(initialPosition, [this._minDate, this._maxDate])
: new Date();
}
/**
* Tries to parse the input element's value as a date. If the input value
* is parsable, commits the resulting date as the value. Otherwise, commits
* an empty string as the value. If no i18n parser is provided, commits
* the focused date as the value.
*
* @private
*/
__commitParsedOrFocusedDate() {
// Select the parsed input or focused date
this._ignoreFocusedDateChange = true;
if (this.i18n.parseDate) {
const inputValue = this._inputElementValue || '';
const parsedDate = this.__parseDate(inputValue);
if (parsedDate) {
this.__commitDate(parsedDate);
} else {
this.__keepInputValue = true;
this.__commitDate(null);
this.__keepInputValue = false;
}
} else if (this._focusedDate) {
this.__commitDate(this._focusedDate);
}
this._ignoreFocusedDateChange = false;
}
/** @protected */
_onOverlayClosed() {
// Reset `aria-hidden` state.
if (this.__showOthers) {
this.__showOthers();
this.__showOthers = null;
}
window.removeEventListener('scroll', this._boundOnScroll, true);