Brandon Roberts

Results 178 comments of Brandon Roberts
trafficstars

Under `guide/store/recipes` will work.

Thanks @thecp. Will you provide a snippet of what the changes would look like? Would like to see if its worth bringing in the extra dependency.

The main intent of this library is to keep your store in sync the Angular Router URL, since its the source of truth as to what's display on the page....

The actions are provided so that your navigation can flow through your state. Also if you're using the devtools to debug and time travel through the state, those actions with...

Reasonable enough. I'll look into adding this soon.

Can someone provide a simple reproduction of this issue?

No updates. Version 2.x of `@ngrx/router-store` is no longer being maintained. You should upgrade as we have a full migration document from 2.x to 4.x(the same migration applies to 5.x...

Agreed. I'll work on better docs unless someone wants to contribute a PR

This should still work in your reducer. The type is still a string. ```ts switch (action.type) { case foo.ActionTypes.BAR: return Object.assign({}, state, { foo: bar }); case routerActions.UPDATE_LOCATION: return state;...

I see. I'll looking to adding typed actions soon. You can also create your own typed action and use it in the reducer. ```ts import { Action } from '@ngrx/store';...