Replies: 1 comment 3 replies
-
Hey @kuglee! I might be missing something, but it seems that all you reducers are Also, I'm not sure that a computed property is the right tool for some computationally expensive task. You would probably want to keep this hard-earned data around in some way or another. The usual way to do this is to spawn a task that updates the As an aside, and in the general picture, you would probably want to scope the store of |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi!
I have a computed property named sortedAppListItems in the model that returns the appListItems IdentifiedArray sorted. This property is used in a ForEachStore.
The problem is when the Add button is clicked this property is evaluated by the ForEachStore although no state change occurs in the model because the addButtonPressed doesn't update the state.
Is this supposed to work like this?
SSCCE:
Beta Was this translation helpful? Give feedback.
All reactions