router-store
router-store copied to clipboard
Bindings to connect the Angular Router to @ngrx/store
Hi, I'm encountering a weird issue that I was hoping I could get some help with. Without adding the Connecting module, my app works fine. The second I add it,...
Hi, when route is changed with Angulars Route, then the store will create new navigation event, which will result in two same router events. For example: ```html test me ```...
I think it would be a good idea to dispatch actions when we use the browser's back and forward buttons. This way we can listen to these actions in our...
I am sending semicolon in router path and update-location is modifying it and adding `=` at the end. Any idea why?
Hello Do you think it's possible to create a effect based on a route which will send the url to a api and the result will return the type. Based...
Currently, `RouterState` hosts only a `path`; It will be nice if it can host a `queryParams` object and enhance `connectRouterActions` to dispatch it. ``` // reducer.ts export interface RouterState {...
**Repo for reproduce**: https://github.com/thebarada/ngrx-router-can-activate-bug Just try go to /profile - path will be empty Then comment dispatch on ngOnInit in AppComponent and try one more time - path will be...
I think this module would be more useful if we would change it in the following way. 1. Rename the actions for `go`, `replace` etc to `TRIGGER_GO` etc. 2. Dispatch...
There are times when `go()` is not sufficient as it uses `navigate` method internally. For example, when passing redirection links with URL params inside, internal use of `navigate` doesn't work...
I'm currently in the process of setting up a big project with Angular and ngrx. I managed to figure out most things, but am missing some information about the `@ngrx/router-store`:...