Я пытаюсь создать пользовательский элемент с Angulars ControlValueAccessor. Целью является переключение с тремя состояниями: true, false и null. По умолчанию должен быть выбран нуль, я пробовал некоторые решения из других постов, но они не работали.
Я попытался добавить «value = null» в группу mat-button-toggle-group, а также добавить атрибут «checked» в сам нуль-переключатель mat-button.
HTML:
<div class="nullableBoolWrapper" fxLayout="row">
<mat-label class="centred-vertically">{{ label }}</mat-label>
<mat-button-toggle-group class="selection-button"
[disabled]="isDisabled"
[(ngModel)]="selectedValue"
(change)="changed($event)">
<mat-button-toggle ngDefaultControl value=true>{{ descriptionList[0].description }}</mat-button-toggle>
<mat-button-toggle ngDefaultControl value=false>{{ descriptionList[1].description }}</mat-button-toggle>
<mat-button-toggle ngDefaultControl value=null [disabled]="!selectableNull">{{ descriptionList[2].description }}</mat-button-toggle>
</mat-button-toggle-group>
TS:
import { Description } from './../core/models/description';
import { Component, ViewEncapsulation, forwardRef, Input, OnInit } from '@angular/core';
import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';
export const NULLABLE_BOOL_VALUE_ACCESSOR: any = {
provide: NG_VALUE_ACCESSOR,
useExisting: forwardRef(() => NullableBoolComponent),
multi: true
};
@Component({
selector: 'nullable-bool',
templateUrl: './nullable-bool.component.html',
styleUrls: ['./nullable-bool.component.scss'],
providers: [NULLABLE_BOOL_VALUE_ACCESSOR]
})
export class NullableBoolComponent implements ControlValueAccessor, OnInit {
constructor() { }
@Input('descriptionList') descriptionList: Description[];
@Input('selectableNull') selectableNull = false;
@Input('label') label: string;
public selectedValue: boolean | null = null;
public isDisabled = false;
private defaultList: Description[] = [{ description: 'Yes' }, { description: 'No' }, { description: 'Not set' }];
private onChange: any = () => {};
private onTouch: any = () => {};
writeValue(val: boolean | null): void { this.selectedValue = val; }
registerOnChange(fn: any): void { this.onChange = fn; }
registerOnTouched(fn: any): void { this.onTouch = fn; }
setDisabledState?(isDisabled: boolean): void { this.isDisabled = isDisabled; }
ngOnInit() { this.descriptionList === undefined ? this.descriptionList = this.defaultList : null; }
changed($event: any): void {
this.onTouch();
this.onChange($event);
}
}
Решение:
<div class="nullableBoolWrapper" fxLayout="row">
<mat-label class="centred-vertically">{{ label }}</mat-label>
<mat-button-toggle-group class="selection-button"
[disabled]="isDisabled"
(change)="changed($event)" #gro="matButtonToggleGroup" value="null">
<mat-button-toggle ngDefaultControl [value]="true">{{ descriptionList[0].description }}</mat-button-toggle>
<mat-button-toggle ngDefaultControl [value]="false">{{ descriptionList[1].description }}</mat-button-toggle>
<mat-button-toggle ngDefaultControl value="null" [disabled]="!selectableNull">{{ descriptionList[2].description }}</mat-button-toggle>
</mat-button-toggle-group>
</div>
В моем случае мне пришлось удалить ngModel.
Привет