import { MatRadioGroupModule } from '@angular/material/radio'; import { MatRadioModule } from '@angular/material/radio';
selectedValue: string;
import { forwardRef } from '@angular/core'; import { NG_VALUE_ACCESSOR, ControlValueAccessor } from '@angular/forms';
const CUSTOM_RADIO_VALUE_ACCESSOR: any = { provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => CustomRadioComponent), multi: true };
@Component({ selector: 'app-custom-radio', templateUrl: './custom-radio.component.html', styleUrls: ['./custom-radio.component.scss'], providers: [CUSTOM_RADIO_VALUE_ACCESSOR] }) export class CustomRadioComponent implements ControlValueAccessor { ...
writeValue(obj: any): void { this.innerValue = obj; this.onChange(obj); this.onTouched(); }
registerOnChange(fn: any): void { this.onChange = fn; }
registerOnTouched(fn: any): void { this.onTouched = fn; }
setDisabledState?(isDisabled: boolean): void { this.disabled = isDisabled; } }
@Directive({ selector: 'mat-radio-group[appCustomRadio]', providers: [ {provide: NG_VALUE_ACCESSOR, useExisting: CustomRadioComponent, multi: true} ] }) export class MatRadioGroupDirective implements AfterViewInit, OnDestroy { ... }