Я создал пользовательский компонент ввода для раз.Я могу успешно установить начальное значение, полученное [(ngModel)], однако любые изменения в поле ввода не обрабатываются.Чтобы быть более точным: writeValue вызывается изначально, а установщик - нет.
Компонент выглядит следующим образом:
@Component({
selector: 'app-timepicker',
templateUrl: './timepicker.component.html',
styleUrls: ['./timepicker.component.scss'],
providers: [{provide: MatFormFieldControl, useExisting: forwardRef(() => NexupTimepickerComponent)}]
})
export class NexupTimepickerComponent implements OnDestroy, ControlValueAccessor {
autofilled: boolean;
// Subject for the changes on the input
stateChanges = new Subject<void>();
// Grouping of the input fields
parts: FormGroup;
public _onChange: any;
constructor(fb: FormBuilder, private fm: FocusMonitor, private elRef: ElementRef<HTMLElement>,
@Optional() @Self() public ngControl: NgControl
) {
this.parts = fb.group({
'hour': '',
'minute': ''
});
// control focus
fm.monitor(elRef.nativeElement, true).subscribe(origin => {
this.focused = !!origin;
this.stateChanges.next();
});
this._onChange = (_: any) => {
};
if (this.ngControl) {
this.ngControl.valueAccessor = this;
}
}
// value
@Input()
get value(): Time | null {
console.log('Getting value');
const n = this.parts.value;
if (n.hour.length === 2 && n.minute.length === 2) {
return new Time(n.hour, n.minute);
}
return null;
}
set value(time: Time | null) {
console.log('Setting value to: ', time);
time = time || new Time('', '');
this.parts.setValue({hour: time.hour, minute: time.minute});
this.stateChanges.next();
}
ngOnDestroy() {
this.stateChanges.complete();
this.fm.stopMonitoring(this.elRef.nativeElement);
}
registerOnChange(fn: any): void {
console.log('registered');
this._onChange = fn;
}
registerOnTouched(fn: any): void {
}
setDisabledState(isDisabled: boolean): void {
}
writeValue(value: any): void {
console.log('received value: ', value);
if ((value !== this.parts.getRawValue()) && value) {
console.log('writing value to: ', value);
this.parts.setValue({hour: value.hour, minute: value.minute});
console.log('new value: ', this.parts.getRawValue());
}
}
}
HTML в родительском компоненте выглядит так:
<mat-form-field appearance="outline">
<mat-label>End Time</mat-label>
<app-timepicker [required]="true"
[(ngModel)]="endTimeObject" #endTime="ngModel" name="endTime" ngDefaultControl>
</app-timepicker>
</mat-form-field>