Skip to content

Commit 8da5d4d

Browse files
committed
fix(datepicker): propagate type changes to the input
1 parent b3b6372 commit 8da5d4d

File tree

4 files changed

+20
-7
lines changed

4 files changed

+20
-7
lines changed

libs/datepicker/src/lib/date-range-input.ts

+2
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,8 @@ export class MatDateRangeInput<D> implements MatFormFieldControl<DateRange<D>>,
229229
/** Emits when the input's state has changed. */
230230
stateChanges = new Subject<void>();
231231

232+
type: any; // unused prop in the range
233+
232234
constructor(
233235
private _changeDetectorRef: ChangeDetectorRef,
234236
private _elementRef: ElementRef<HTMLElement>,

libs/datepicker/src/lib/datepicker-base.ts

+6
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,7 @@ export class MatDatepickerContent<S, D = ExtractDateTypeFromSelection<S>>
248248

249249
/** Form control that can be associated with a datepicker. */
250250
export interface MatDatepickerControl<D> {
251+
type: MatCalendarType;
251252
getStartValue(): D | null;
252253
getThemePalette(): ThemePalette;
253254
min: D | null;
@@ -498,6 +499,10 @@ export abstract class MatDatepickerBase<C extends MatDatepickerControl<D>, S,
498499
}
499500
}
500501

502+
if (this.datepickerInput.type !== this.type) {
503+
this.datepickerInput.type = this.type;
504+
}
505+
501506
this.stateChanges.next(undefined);
502507
}
503508

@@ -543,6 +548,7 @@ export abstract class MatDatepickerBase<C extends MatDatepickerControl<D>, S,
543548
}
544549
this._inputStateChanges.unsubscribe();
545550
this.datepickerInput = input;
551+
this.datepickerInput.type = this.type;
546552
this._inputStateChanges =
547553
input.stateChanges.subscribe(() => this.stateChanges.next(undefined));
548554
return this._model;

libs/datepicker/src/lib/datepicker-input-base.ts

+12-6
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,14 @@ export abstract class MatDatepickerInputBase<S, D = ExtractDateTypeFromSelection
120120
stateChanges = new Subject<void>();
121121

122122
/** The type of value handled by the calendar. */
123-
type: MatCalendarType = 'date';
124-
123+
set type(type: MatCalendarType) {
124+
this._type = type;
125+
if (this.value) {
126+
this._formatValue(this.value);
127+
}
128+
}
129+
protected _type: MatCalendarType = 'date';
130+
125131
_onTouched = () => {};
126132
_validatorOnChange = () => {};
127133

@@ -261,14 +267,14 @@ export abstract class MatDatepickerInputBase<S, D = ExtractDateTypeFromSelection
261267
}
262268

263269
getUnit(): DateUnit {
264-
switch (this.type) {
270+
switch (this._type) {
265271
case 'date':
266272
return 'day';
267273
case 'datetime':
268274
case 'time':
269275
return 'minute';
270276
default:
271-
return this.type;
277+
return this._type;
272278
}
273279
}
274280

@@ -313,7 +319,7 @@ export abstract class MatDatepickerInputBase<S, D = ExtractDateTypeFromSelection
313319

314320
_onInput(value: string) {
315321
const lastValueWasValid = this._lastValueValid;
316-
let date = this._dateAdapter.parse(value, this._dateFormats.parse[`${this.type}Input`]);
322+
let date = this._dateAdapter.parse(value, this._dateFormats.parse[`${this._type}Input`]);
317323
this._lastValueValid = this._isValidValue(date);
318324
date = this._dateAdapter.getValidDateOrNull(date);
319325

@@ -351,7 +357,7 @@ export abstract class MatDatepickerInputBase<S, D = ExtractDateTypeFromSelection
351357
/** Formats a value and sets it on the input element. */
352358
protected _formatValue(value: D | null) {
353359
this._elementRef.nativeElement.value = value
354-
? this._dateAdapter.format(value, this._dateFormats.display[`${this.type}Input`])
360+
? this._dateAdapter.format(value, this._dateFormats.display[`${this._type}Input`])
355361
: '';
356362
}
357363

libs/datepicker/src/lib/datepicker-input.ts

-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ export class MatDatepickerInput<D> extends MatDatepickerInputBase<D | null, D>
8181
set matDatepicker(datepicker: MatDatepickerPanel<MatDatepickerControl<D>, D | null, D>) {
8282
if (datepicker) {
8383
this._datepicker = datepicker;
84-
this.type = datepicker.type;
8584
this._closedSubscription = datepicker.closedStream.subscribe(() => this._onTouched());
8685
this._registerModel(datepicker.registerInput(this));
8786
}

0 commit comments

Comments
 (0)