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
I'm wondering if this is possible with instance methods/properties or if I have to inject the store. I'm also interested in scenarios where the input changes, and how to handle that with the select pattern.
The text was updated successfully, but these errors were encountered:
But with that approach, you still need to have sth like a currentEntityId somewhere else in your state.
My issue is that i'm not able to have that property due to the structure of the page (there are multiple currentEntities, within multiple entitiesGroups within a single entityOwner, for example) and I need the entitiesGroup Id, which is passed as an Input and Redux seems to set @selects before @inputs, so I can't really read it to use the approach I suggested. IDK if there's a way to bypass this or a better implementation
This is a...
What toolchain are you using for transpilation/bundling?
ngc
Environment
NodeJS Version: 10.15.1
Typescript Version: 3.2.2
Angular Version: 7.2.10
@angular-redux/store version: 9.0.0
@angular/cli version: (if applicable) 7.3.5
OS: macOS
Notes
I have a 'normalized' state shape where entities are indexed by id.
The entities are rendered in a list, which is controlled by a form of filters and sort options.
I'm using Epics to observe the form actions to update an array of filtered, sorted entity ids.
Can the EntityComponent use the
entityId
input with the@select
decorator?I'm wondering if this is possible with instance methods/properties or if I have to inject the store. I'm also interested in scenarios where the input changes, and how to handle that with the select pattern.
The text was updated successfully, but these errors were encountered: