Skip to content

Commit f8cd8eb

Browse files
crisbetojelbourn
authored andcommitted
fix(selection-list): remove selected option from model value on destroy (#9106)
Fixes selected options that are removed from the DOM not being removed from the model. Relates to #9104.
1 parent 91ea1a1 commit f8cd8eb

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

src/lib/list/selection-list.spec.ts

+18-1
Original file line numberDiff line numberDiff line change
@@ -675,6 +675,22 @@ describe('MatSelectionList with forms', () => {
675675
expect(ngModel.pristine)
676676
.toBe(false, 'Expected the selection-list to be dirty after state change.');
677677
}));
678+
679+
it('should remove a selected option from the value on destroy', fakeAsync(() => {
680+
listOptions[1].selected = true;
681+
listOptions[2].selected = true;
682+
683+
fixture.detectChanges();
684+
685+
expect(fixture.componentInstance.selectedOptions).toEqual(['opt2', 'opt3']);
686+
687+
fixture.componentInstance.renderLastOption = false;
688+
fixture.detectChanges();
689+
tick();
690+
691+
expect(fixture.componentInstance.selectedOptions).toEqual(['opt2']);
692+
}));
693+
678694
});
679695

680696
describe('and formControl', () => {
@@ -869,11 +885,12 @@ class SelectionListWithTabindexBinding {
869885
<mat-selection-list [(ngModel)]="selectedOptions">
870886
<mat-list-option value="opt1">Option 1</mat-list-option>
871887
<mat-list-option value="opt2">Option 2</mat-list-option>
872-
<mat-list-option value="opt3">Option 3</mat-list-option>
888+
<mat-list-option value="opt3" *ngIf="renderLastOption">Option 3</mat-list-option>
873889
</mat-selection-list>`
874890
})
875891
class SelectionListWithModel {
876892
selectedOptions: string[] = [];
893+
renderLastOption = true;
877894
}
878895

879896
@Component({

src/lib/list/selection-list.ts

+6
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,12 @@ export class MatListOption extends _MatListOptionMixinBase
178178
}
179179

180180
ngOnDestroy(): void {
181+
if (this.selected) {
182+
// We have to delay this until the next tick in order
183+
// to avoid changed after checked errors.
184+
Promise.resolve().then(() => this.selected = false);
185+
}
186+
181187
this.selectionList._removeOptionFromList(this);
182188
}
183189

0 commit comments

Comments
 (0)