Skip to content

Commit

Permalink
fix(module:radio): fix radio disabled bug in group (#1746)
Browse files Browse the repository at this point in the history
close #1734
  • Loading branch information
vthinkxie committed Jun 28, 2018
1 parent a516949 commit 86fc773
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 9 deletions.
14 changes: 9 additions & 5 deletions components/radio/nz-radio-group.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import {
Input
} from '@angular/core';
import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';
import { isNotNil } from '../core/util/check';
import { toBoolean } from '../core/util/convert';

export type NzRadioGroupSizeType = 'large' | 'default' | 'small';

Expand All @@ -31,7 +33,7 @@ import { NzRadioComponent } from './nz-radio.component';
export class NzRadioGroupComponent implements AfterContentInit, ControlValueAccessor {
private _size: NzRadioGroupSizeType = 'default';
private _name: string;
private _disabled: boolean = false;
private _disabled: boolean;
el: HTMLElement;
value: string;

Expand All @@ -52,7 +54,7 @@ export class NzRadioGroupComponent implements AfterContentInit, ControlValueAcce

@Input()
set nzDisabled(value: boolean) {
this._disabled = value;
this._disabled = toBoolean(value);
this.updateDisabledState();
}

Expand All @@ -71,9 +73,11 @@ export class NzRadioGroupComponent implements AfterContentInit, ControlValueAcce
}

updateDisabledState(): void {
this.radios.forEach((radio) => {
radio.nzDisabled = this.nzDisabled;
});
if (isNotNil(this.nzDisabled)) {
this.radios.forEach((radio) => {
radio.nzDisabled = this.nzDisabled;
});
}
}

updateChildrenName(): void {
Expand Down
24 changes: 20 additions & 4 deletions components/radio/nz-radio.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ describe('radio', () => {
radios = fixture.debugElement.queryAll(By.directive(NzRadioButtonComponent));
radioGroup = fixture.debugElement.query(By.directive(NzRadioGroupComponent));
});
it('should disable work', fakeAsync(() => {
it('should group disable work', fakeAsync(() => {
fixture.detectChanges();
expect(testComponent.value).toBe('A');
radios[ 1 ].nativeElement.click();
Expand All @@ -177,6 +177,19 @@ describe('radio', () => {
expect(radios[ 1 ].nativeElement.firstElementChild.classList).not.toContain('ant-radio-button-checked');
expect(testComponent.value).toBe('A');
}));
it('should single disable work', fakeAsync(() => {
testComponent.disabled = false;
fixture.detectChanges();
testComponent.singleDisabled = true;
fixture.detectChanges();
expect(testComponent.value).toBe('A');
radios[ 2 ].nativeElement.click();
fixture.detectChanges();
flush();
fixture.detectChanges();
expect(radios[ 2 ].nativeElement.firstElementChild.classList).not.toContain('ant-radio-button-checked');
expect(testComponent.value).toBe('A');
}));
});
describe('radio form', () => {
let fixture;
Expand Down Expand Up @@ -238,11 +251,11 @@ describe('radio', () => {
it('should set disabled work', fakeAsync(() => {
flush();
expect(testComponent.formGroup.get('radioGroup').value).toBe('B');
radios[0].nativeElement.click();
radios[ 0 ].nativeElement.click();
fixture.detectChanges();
expect(testComponent.formGroup.get('radioGroup').value).toBe('A');
testComponent.disable();
radios[1].nativeElement.click();
radios[ 1 ].nativeElement.click();
fixture.detectChanges();
expect(testComponent.formGroup.get('radioGroup').value).toBe('A');
}));
Expand Down Expand Up @@ -340,13 +353,15 @@ export class NzTestRadioGroupFormComponent {
}

/** https://github.com/NG-ZORRO/ng-zorro-antd/issues/1543 **/
/** https://github.com/NG-ZORRO/ng-zorro-antd/issues/1734 **/

@Component({
selector: 'nz-test-radio-group-disabled',
template: `
<nz-radio-group [(ngModel)]="value" [nzName]="name" [nzDisabled]="disabled" [nzSize]="size">
<label nz-radio-button nzValue="A">A</label>
<label nz-radio-button nzValue="B">B</label>
<label nz-radio-button nzValue="C">C</label>
<label nz-radio-button nzValue="C" [nzDisabled]="singleDisabled">C</label>
<label nz-radio-button nzValue="D">D</label>
</nz-radio-group>`
})
Expand All @@ -356,4 +371,5 @@ export class NzTestRadioGroupDisabledComponent {
value = 'A';
disabled = true;
name: string;
singleDisabled = false;
}

0 comments on commit 86fc773

Please sign in to comment.