Evan Schultz
Evan Schultz
One approach that I have done, is to pull selectors out to their own file(s), for example something like: ```ts // account-feature-selectors export someSelector = (state) => export someSelector1 =...
Can you provide an example of how you are defining the interface in combineReducers? The way I've generally set this up - I haven't had much of an issue -...
@rightisleft can you provide a clearer use case/example of how this could work? still not clear
Hi, If you are using `@select` or `.select` - it's returning an Observable, to filter a list of todos for example, could have something like: ```ts @select(['todos']) todos$; filteredTodos$ =...
@smithad15 if I'm understanding this correctly - this doesn't need to be a breaking change - as the old way of configuring a store still works? - matter of putting...
While there is overlap with configureSubStore - what about use cases where once the lazy-loaded thing is mounted - you don't want to limit the actions/etc it receives to be...
Hey, this has slightly fell off my radar - I'm hoping to get some time soon to revisit a few things - but not opposed to getting this in soon,...
@smithad15 hey - since you were doing the initial work on this - I've lost track of where we were. Do you have time to revisit this again and see...
Been thinking about this, and agree with concerns of potentially being a breaking change for some users. When going with the array style vs the `.` style paths - I...
Can you clarify - is this if the state does not change at all, or - if a slice of state not related to the selector changes?