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

bug(cdk/dialog): parent injector not working correctly #30315

Open
1 task done
DaSchTour opened this issue Jan 13, 2025 · 5 comments
Open
1 task done

bug(cdk/dialog): parent injector not working correctly #30315

DaSchTour opened this issue Jan 13, 2025 · 5 comments
Labels
area: cdk/dialog P4 A relatively minor issue that is not relevant to core functions

Comments

@DaSchTour
Copy link
Contributor

DaSchTour commented Jan 13, 2025

Is this a regression?

  • Yes, this behavior used to work in the previous version

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

     _                      _                 ____ _     ___
    / \   _ __   __ _ _   _| | __ _ _ __     / ___| |   |_ _|
   / △ \ | '_ \ / _` | | | | |/ _` | '__|   | |   | |    | |
  / ___ \| | | | (_| | |_| | | (_| | |      | |___| |___ | |
 /_/   \_\_| |_|\__, |\__,_|_|\__,_|_|       \____|_____|___|
                |___/
    

Angular CLI: 19.0.0
Node: 18.20.3
Package Manager: npm 10.2.3
OS: linux x64

Angular: 19.0.0
... animations, build, cli, common, compiler, compiler-cli, core
... forms, platform-browser, router

Package                      Version
------------------------------------------------------
@angular-devkit/architect    0.1900.0
@angular-devkit/core         19.0.0
@angular-devkit/schematics   19.0.0
@angular/cdk                 19.0.5
@schematics/angular          19.0.0
rxjs                         7.8.1
typescript                   5.6.3
zone.js                      0.15.0
@DaSchTour DaSchTour added the needs triage This issue needs to be triaged by the team label Jan 13, 2025
@DaSchTour
Copy link
Contributor Author

DaSchTour commented Jan 13, 2025

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,
});

@crisbeto crisbeto added P4 A relatively minor issue that is not relevant to core functions area: cdk/dialog and removed needs triage This issue needs to be triaged by the team labels Jan 21, 2025
@us77ipis
Copy link

us77ipis commented Jan 22, 2025

Similar issue here using MatDialog, though nested: I can inject a service in the dialog component itself alone and it works, however if I have a nested component used inside the template of the dialog component that also injects the same service then it breaks in the same way as the reproduction above.

EDIT: Actually my issue was caused by a cyclic import angular/angular#58802

@jmeinlschmidt
Copy link

jmeinlschmidt commented Feb 4, 2025

same issue here, it is a blocker for our upgrade

@Norby125
Copy link

@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!

@jmeinlschmidt
Copy link

bump

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area: cdk/dialog P4 A relatively minor issue that is not relevant to core functions
Projects
None yet
Development

No branches or pull requests

5 participants