-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
Infinite revalidation
bug error thrown in willDestroyElement calls if we set any parent properties inside it in Ember versions higher than 5.5.0
#20707
Comments
Infinite revalidation
bug error thrown in willDestroyElement calls in Ember versions higher than 5.5.0 Infinite revalidation
bug error thrown in willDestroyElement calls if we set any parent properties inside it in Ember versions higher than 5.5.0
Thanks for the reproduction! after looking through your code, it seems like you don't want destruction to auto-track. @action
toggleChild() {
setProperties(this, { showChild: !this.showChild });
} to @action
async toggleChild() {
await 0
setProperties(this, { showChild: !this.showChild });
} |
Discussed in discord, an alternative is to switch to |
Won't it cause any issue if we use |
why would it? -- it exists in classic components |
I believe switching to |
Do we expicitly set the |
it'll be cleaned up, all handled by the framework <3 |
Yeah. I'm asking can we able to access the |
I don't recall, that'd be a good thing to try -- what is |
I don't believe the element is available in |
We recently upgraded our ember application from version 3.28 to v5.9.0. After upgrade some cleanup operations using
willDestroyElement
calls in ember component throws infinite revalidation bug error, but when we usewillDestroy
method orregisterDestructor
function, this issue doesn't occur.We found that this issue is present in ember versions starting from v5.6.0. But upto v5.5.0 this issue isn't there.
I've tried to reproduce the bug in the repo https://github.com/tamil-arasu849/ember-lifecycle-hook-bug-repo.
The app will throw the below error when toggling the child component. But downgrading the version to v5.5.0 or lower fixes this issue
This bug breaks many of our existing components
The text was updated successfully, but these errors were encountered: