-
Notifications
You must be signed in to change notification settings - Fork 26.1k
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
@angular/elements component events are called from an inconsistent zone #24181
Comments
I have created a PR, #24185 for this (based on open PR 23885 from @JiaLiPassion |
@remackgeek Thank you for your quick response with a PR! |
In general, I'm not super excited about adding a bunch of affordances for Zones + Elements - the future of Elements is almost certainly Zoneless, so I'm concerned about adding a bunch of Zone specific APIs we have to support forever. @remackgeek your PR seems fine, though it might be better implemented as an additional ElementStrategy/Factory (or potentially a subclass of the ComponentFactoryStrategy) - which developers who wanted to use Zones could pass into the |
@robwormald , I agree an additional ElementStrategy/Factory is better, by checking current NgZone is using And do you have chance to take a look at my proposal? https://github.com/JiaLiPassion/angular-elements-with-zone
Please check it when you have time. Thank you! |
@robwormald, At my company there is a big opportunity for using elements in older applications -- and the developers are used to change detection that Just Works(tm), so I think the zone use case brings a lot of value. So you are thinking something like this to enable zones:
and then a strategy with methods something like this?
I'll update the PR |
...or, add a new optional field to the configuration: and change the factory constructor to add the boolean (defaulting to false). Then you wouldn't need to have a new factory and add it to the public API Let me know which way you prefer. |
@remackgeek more like the first one - it doesn't require changing the API surface of |
I don't know guys, I've seen Angular elements as a great opportunity to promote more OnPush, fewer dependencies (Zone.js)...and the locality ;-) |
@robwormald, I've updated the PR per your comments. Please take a look. |
same issue occurred to me |
What is the plan on this? Having an opportunity to export existing AngularComponents and use them in non Angular or legacy AngularJS application with Zone/Change Detection working out of the box would be a huge use case for my company (and for many others with legacy / non angular systems i believe) |
Sounds reasonable. It seems that Unfortunately, it seems that #26216 has slipped through the cracks and is quite old now (not to mention failing CI). Would someone be interested in submitting a new PR with this change. (It would be rad if someone wanted to add some API docs for NgElementStrategy too 🤩) BTW, just to be clear, I did not suggest we should leave this for external library support (that is just one of the options and we might indeed end up deciding to go that way). |
Default change detection fails in some cases for @angular/elements where component events are called from the wrong zone. This fixes the issue by running all ComponentNgElementStrategy methods in the same zone it was created in. Fixes angular#24181
Default change detection fails in some cases for @angular/elements where component events are called from the wrong zone. This fixes the issue by running all ComponentNgElementStrategy methods in the same zone it was created in. Fixes angular#24181
Default change detection fails in some cases for @angular/elements where component events are called from the wrong zone. This fixes the issue by running all ComponentNgElementStrategy methods in the same zone it was created in. Fixes angular#24181
Default change detection fails in some cases for @angular/elements where component events are called from the wrong zone. This fixes the issue by running all ComponentNgElementStrategy methods in the same zone it was created in. Fixes angular#24181
Default change detection fails in some cases for @angular/elements where component events are called from the wrong zone. This fixes the issue by running all ComponentNgElementStrategy methods in the same zone it was created in. Fixes angular#24181
Default change detection fails in some cases for @angular/elements where component events are called from the wrong zone. This fixes the issue by running all ComponentNgElementStrategy methods in the same zone it was created in. Fixes angular#24181
Default change detection fails in some cases for @angular/elements where component events are called from the wrong zone. This fixes the issue by running all ComponentNgElementStrategy methods in the same zone it was created in. Fixes angular#24181
Default change detection fails in some cases for @angular/elements where component events are called from the wrong zone. This fixes the issue by running all ComponentNgElementStrategy methods in the same zone it was created in. Fixes angular#24181
Default change detection fails in some cases for @angular/elements where component events are called from the wrong zone. This fixes the issue by running all ComponentNgElementStrategy methods in the same zone it was created in. Fixes angular#24181
Default change detection fails in some cases for @angular/elements where component events are called from the wrong zone. This fixes the issue by running all ComponentNgElementStrategy methods in the same zone it was created in. Fixes angular#24181
Default change detection fails in some cases for @angular/elements where component events are called from the wrong zone. This fixes the issue by running all ComponentNgElementStrategy methods in the same zone it was created in. Fixes angular#24181
Default change detection fails in some cases for @angular/elements where component events are called from the wrong zone. This fixes the issue by running all ComponentNgElementStrategy methods in the same zone it was created in. Fixes angular#24181
Default change detection fails in some cases for @angular/elements where component events are called from the wrong zone. This fixes the issue by running all ComponentNgElementStrategy methods in the same zone it was created in. Fixes angular#24181
Default change detection fails in some cases for @angular/elements where component events are called from the wrong zone. This fixes the issue by running all ComponentNgElementStrategy methods in the same zone it was created in. Fixes angular#24181
Default change detection fails in some cases for @angular/elements where component events are called from the wrong zone. This fixes the issue by running all ComponentNgElementStrategy methods in the same zone it was created in. Fixes angular#24181
Default change detection fails in some cases for @angular/elements where component events are called from the wrong zone. This fixes the issue by running all ComponentNgElementStrategy methods in the same zone it was created in. Fixes angular#24181
Default change detection fails in some cases for @angular/elements where component events are called from the wrong zone. This fixes the issue by running all ComponentNgElementStrategy methods in the same zone it was created in. Fixes angular#24181 PR Close angular#37814
Default change detection fails in some cases for @angular/elements where component events are called from the wrong zone. This fixes the issue by running all ComponentNgElementStrategy methods in the same zone it was created in. Fixes angular#24181 PR Close angular#37814
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Default change detection fails in some cases for @angular/elements where component events are called from the wrong zone. This fixes the issue by running all ComponentNgElementStrategy methods in the same zone it was created in. Fixes angular#24181 PR Close angular#37814
I'm submitting a...
Current behavior
Event handlers in an angular element (registered as a custom element with
@angular/elements
), are called either from the angular zone or from the root zone depending on how the element is instantiated, leading to different behaviors:Expected behavior
The angular element should behave correctly no matter how it is instantiated.
In the minimal reproduction sample, clicking on "Toggle display" should work no matter the line.
Minimal reproduction of the problem with instructions
https://stackblitz.com/edit/angular-dxu5td?file=src%2Fapp%2Fhello.component.ts
Depending on the line and the browser, clicking on the "Toggle display" works or has no effect.
In Chrome, only the first two lines work correctly. In other browsers, only the first line works correctly.
What is the motivation / use case for changing the behavior?
The current behavior is inconsistent. Event handlers should be called from the angular zone no matter how the component is instantiated, which would allow those components to be created from any other framework even if that framework does not run in the angular zone.
Environment
The text was updated successfully, but these errors were encountered: