You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue collects some graphs NgRx Vis printed out that make me having a deeper look in the code base of the respective NgRx project.
Often I really find a code or a modelling issue.
NgRx Example App
Load Books Failure
The action below is handled by an effect but has no continuation.
It is not used.
Load book
No dispatcher is found.
The reason is that the action is remapped in a stream and the reference is lost.
NgRx Vis cannot track the reference any more.
I don't consider this being a bug yet since remapping the action is not needed in this case
The graph below looks a bit confusing first. Having a look in the codebase, you will see that the error handling is done in a separate effect that is called by other effects.
This graph shows up multiple times for that project. This is an indicator to create an effect being responsible for error handling.
The text was updated successfully, but these errors were encountered:
This issue collects some graphs NgRx Vis printed out that make me having a deeper look in the code base of the respective NgRx project.
Often I really find a code or a modelling issue.
NgRx Example App
Load Books Failure
The action below is handled by an effect but has no continuation.
It is not used.
Load book
No dispatcher is found.
The reason is that the action is
remapped
in a stream and the reference is lost.NgRx Vis cannot track the reference any more.
I don't consider this being a bug yet since remapping the action is not needed in this case
NgRx Facade App
Effect is calling itself
The graph below looks a bit confusing first. Having a look in the codebase, you will see that the error handling is done in a separate effect that is called by other effects.
This graph shows up multiple times for that project. This is an indicator to create an effect being responsible for error handling.
The text was updated successfully, but these errors were encountered: