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
Currently, if you change X, the function for Z will trigger 3 times, like this (every letter is a function executing): A Z B Z C Z, while it's clearly sufficient to do A B C Z (or, perhaps, to not do anything until later, as suggested in #233).
There are a few workarounds for this (denormalising derived properties, using silent: true + custom events, …?) and I might post them here later, but I haven't quite figured out the pros/cons of them.
The text was updated successfully, but these errors were encountered:
Say you have derived properties like this:
Currently, if you change
X
, the function forZ
will trigger 3 times, like this (every letter is a function executing):A Z B Z C Z
, while it's clearly sufficient to doA B C Z
(or, perhaps, to not do anything until later, as suggested in #233).There are a few workarounds for this (denormalising derived properties, using
silent: true
+ custom events, …?) and I might post them here later, but I haven't quite figured out the pros/cons of them.The text was updated successfully, but these errors were encountered: