Skip to content

fix(item): allow nested content to be conditionally interactive #2

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

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

Conversation

soundproofboot
Copy link

Issue number: resolves ionic-team#29763


What is the current behavior?

In Angular, if the nested content of an ion-item is initially not interactive but is then swapped out for an input or other interactive element, a render is not triggered and the item does not behave correctly for one or more nested inputs.

What is the new behavior?

-A mutation observer is used to watch for changes in nested content and reset two pieces of state that track whether the item needs to be interactive and whether there are multiple interactive elements.

Does this introduce a breaking change?

  • Yes
  • [ X] No

Other information

A MutationObserver is used so that if the children of the item are rendered conditionally, when they are swapped out the component checks again to determine whether the item needs to gain or lose interactivity and updates state accordingly, causing a render if isInteractive or multipleInputs changes state. I opted for the MutationObserver over a 'slotchange' listener because the slotchange fires synchronously on any slot within the shadowRoot, and the MutationObserver fires once.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

bug: conditional appearance of the content of an ion-item prevent click on right and left edge of the ion-item (with checkbox)
1 participant