-
Notifications
You must be signed in to change notification settings - Fork 6.8k
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
bug(cdk/dialog): parent injector not working correctly #30315
Comments
One interesting thing is, that reproviding the token from the parent injector works. So this is the current workaround. const token = this.injector.get(ROUTE_TOKEN);
const injector = Injector.create({
providers: [
{ provide: SOME_TOKEN, useValue: 'Other Value' },
{ provide: ROUTE_TOKEN, useValue: token },
],
parent: this.injector,
}); |
Similar issue here using EDIT: Actually my issue was caused by a cyclic import angular/angular#58802 |
same issue here, it is a blocker for our upgrade |
@crisbeto, I’d appreciate it if you could prioritize this. The workaround suggested by @DaSchTour does work, but it’s quite inconvenient. While another option might be to use viewContainerRef, it’s not always applicable, such as when opening a dialog from an NGRX effect (unless we pass the viewContainerRef to the action, which is far from ideal). The amount of code required for the workaround is excessive, and it can vary significantly depending on the case, as the DI elements might be very different in each scenario. Passing the injector should be a straightforward solution, as it was in the latest 18.x version. Could your team please give any ETA on this issue? Thank you! |
bump |
Is this a regression?
The previous version in which this bug was not present was
18
Description
Tokens from the parent injector are not available.
The behaviour is different between a ngComponentOutlet and the injector added to dialog
Reproduction
StackBlitz link: https://stackblitz.com/edit/stackblitz-starters-epebydgb
Steps to reproduce:
1.
2.
Expected Behavior
Tokens from the parent injector are available
Actual Behavior
Tokens from parent injector are not available
Environment
The text was updated successfully, but these errors were encountered: