Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(select): value update not being propagated when selected option is removed or added #9104

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

crisbeto
Copy link
Member

Fixes the select not propagating its value back up to the value accessor if a selected option is added or removed. Previously this only happened the next time the user interacted with an option.

Fixes #9038.

@crisbeto crisbeto requested a review from kara as a code owner December 22, 2017 17:40
@googlebot googlebot added the cla: yes PR author has agreed to Google's Contributor License Agreement label Dec 22, 2017
crisbeto added a commit to crisbeto/material2 that referenced this pull request Dec 22, 2017
Fixes selected options that are removed from the DOM not being removed from the model.

Relates to angular#9104.
crisbeto added a commit to crisbeto/material2 that referenced this pull request Dec 22, 2017
Fixes selected options that are removed from the DOM not being removed from the model.

Relates to angular#9104.
crisbeto added a commit to crisbeto/material2 that referenced this pull request Dec 22, 2017
Fixes selected options that are removed from the DOM not being removed from the model.

Relates to angular#9104.
crisbeto added a commit to crisbeto/material2 that referenced this pull request Dec 23, 2017
Fixes selected options that are removed from the DOM not being removed from the model.

Relates to angular#9104.
jelbourn pushed a commit that referenced this pull request Jan 4, 2018
…oy (#9106)

Fixes selected options that are removed from the DOM not being removed from the model.

Relates to #9104.
jelbourn pushed a commit to jelbourn/components that referenced this pull request Jan 8, 2018
…oy (angular#9106)

Fixes selected options that are removed from the DOM not being removed from the model.

Relates to angular#9104.
jelbourn pushed a commit to jelbourn/components that referenced this pull request Jan 9, 2018
…oy (angular#9106)

Fixes selected options that are removed from the DOM not being removed from the model.

Relates to angular#9104.
jelbourn pushed a commit that referenced this pull request Jan 9, 2018
…oy (#9106)

Fixes selected options that are removed from the DOM not being removed from the model.

Relates to #9104.
tinayuangao pushed a commit that referenced this pull request Jan 10, 2018
…oy (#9106)

Fixes selected options that are removed from the DOM not being removed from the model.

Relates to #9104.
jelbourn
jelbourn previously approved these changes Jan 12, 2018
Copy link
Member

@jelbourn jelbourn left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@jelbourn jelbourn added pr: lgtm action: merge The PR is ready for merge by the caretaker target: patch This PR is targeted for the next patch release and removed pr: needs review labels Jan 12, 2018
@jelbourn
Copy link
Member

@crisbeto it looks like this has the side-effect of causing the select to emit a selectionChange event for its initial value, which it didn't do before

(was caught by an internal test)

@jelbourn jelbourn added presubmit failures This PR has failures in Google's internal presubmit process and cannot be immediately merged and removed action: merge The PR is ready for merge by the caretaker labels Jan 26, 2018
@crisbeto
Copy link
Member Author

@jelbourn do you have any more info on the test? I wasn't able to reproduce it in a test or in the demo app in a few scenarios (single selection, multiple selection and without Angular forms). Here's what my test looks like:

it('should not emit the `selectionChange` event for the preselected value', fakeAsync(() => {
  const fixture = TestBed.createComponent(BasicSelectWithoutFormsPreselected);

  fixture.detectChanges();
  flush();

  expect(fixture.componentInstance.selectionChangeSpy).not.toHaveBeenCalled();
}));

@Component({
  template: `
    <mat-form-field>
      <mat-select placeholder="Food" [(value)]="selectedFood"
        (selectionChange)="selectionChangeSpy()">
        <mat-option *ngFor="let food of foods" [value]="food.value">
          {{ food.viewValue }}
        </mat-option>
      </mat-select>
    </mat-form-field>
  `
})
class BasicSelectWithoutFormsPreselected {
  selectedFood = 'pizza-1';
  selectionChangeSpy = jasmine.createSpy('selectionChange spy');
  foods: any[] = [
    { value: 'steak-0', viewValue: 'Steak' },
    { value: 'pizza-1', viewValue: 'Pizza' },
  ];

  @ViewChild(MatSelect) select: MatSelect;
}

@jelbourn
Copy link
Member

In the test that was failing for this, it was a select inside of mat-paginator. The thing under test is listening to page events from the paginator, the first thing the test does is to set the paginator.pageSize = 1, then they manually emit page (for some reason), and then expect that only one event was handled, but two occur. The extra event seems to come from the select emitting something that it wasn't before.

@SamuelMarks
Copy link
Contributor

Any news on this?

…s removed or added

Fixes the select not propagating its value back up to the value accessor if a selected option is added or removed. Previously this only happened the next time the user interacted with an option.

Fixes angular#9038.
@crisbeto crisbeto force-pushed the 9038/select-selection-change-value branch from 4903636 to ad8997f Compare July 2, 2018 05:45
@mmalerba mmalerba added aaa and removed aaa labels Apr 25, 2019
@andrewseguin andrewseguin added the P3 An issue that is relevant to core functions, but does not impede progress. Important, but not urgent label May 30, 2019
@mhmo91
Copy link

mhmo91 commented Oct 21, 2019

any updates here?

@mmalerba mmalerba removed the lgtm label Jul 31, 2020
@andrewseguin andrewseguin removed the cla: yes PR author has agreed to Google's Contributor License Agreement label Dec 29, 2021
@googlebot googlebot added the cla: yes PR author has agreed to Google's Contributor License Agreement label Dec 29, 2021
@andrewseguin andrewseguin removed the P3 An issue that is relevant to core functions, but does not impede progress. Important, but not urgent label Mar 28, 2022
@josephperrott josephperrott added action: cleanup The PR is in need of cleanup, either due to needing a rebase or in response to comments from reviews and removed needs rebase labels Nov 16, 2022
@josephperrott josephperrott requested a review from a team as a code owner December 18, 2024 17:40
@josephperrott josephperrott requested review from amysorto and mmalerba and removed request for a team and kara December 18, 2024 17:40
@mmalerba mmalerba removed their request for review February 19, 2025 00:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
action: cleanup The PR is in need of cleanup, either due to needing a rebase or in response to comments from reviews cla: yes PR author has agreed to Google's Contributor License Agreement presubmit failures This PR has failures in Google's internal presubmit process and cannot be immediately merged target: patch This PR is targeted for the next patch release
Projects
None yet
Development

Successfully merging this pull request may close these issues.

mat-select model don't update after removing options programmatically
8 participants