-
Notifications
You must be signed in to change notification settings - Fork 0
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
Feature improvement request: include routes into component hierarchy graph #280
Comments
To be honest I'm not a hardcore Angular developer. I primarily do backend stuff in C# and I'm not that familiar with the routing in Angular so I need some more detail of how these relationships should be detected. |
Yes, correct. For the
The general parsing logic would be like this:
|
@MShekow I have now published version 1.9.0 of the extension that is rendering the routing relations to components referenced directly in the routing modules, like shown below: |
Dear Allan, thanks for implementing some of the functionality :). With v1.9.0, I do see new orange-colored arrows in the component hierarchy graph. One minor problem is that the origin of the arrow is not correct, at least for my own project. In my project, the component hierarchy graph claims that my |
Thanks for the feedback. Sounds like i have made an assumption that didn't hold... I have created a fork of Angular-Jumpstart: https://github.com/CoderAllan/Angular-JumpStart |
Hi Allan, your plug-in really helps to visualize dependencies in Angular projects. I particularly like the component hierarchy graph. I noticed, however, that if a component internally uses other components indirectly, via having a
<router-outlet></router-outlet>
in its HTML template (and routes defined in, say, theAppRoutingModule
), then this dependency is missing from the component hierarchy graph.Do you see a way to also include these indirect dependencies?
The text was updated successfully, but these errors were encountered: