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 looking for an event similar to didFind but which would fire every time source received an updated object data. In my case, this happens through linked property of jsonapi response. I've tried to use didTransform event, but it does not suit me well since it contains raw data, but otherwise works with some filtering applied, which is quite dirty.
I'm not sure this is good idea at all but if you think that it's worth considering, I'd love to contribute (with a little guidance).
Thanks for a nice project though! ✨
The text was updated successfully, but these errors were encountered:
Monitoring the didTransform event is currently the only way to know that the contents of a source have changed. The data is represented in the didTransform event in the same normalized form used throughout Orbit. What form of event and data would you find most useful?
Hey @dgeb thanks for the reply! Yeah, looks like didTransform is the solution. There was a bug in my code, linked values were not properly serialized and I mistakenly thought that that's how Orbit does things.
The only thing to mention is that I would probably like more high-level wrapper over didTransform, where I can pass existing object that I'm looking for, so only relevant updates are filtered for me.
Something like this: mySource.on("didUpdate", specificPlanetUpdatedCallback, planet)
I can implement something like that in my code, so closing the issue. If you think that this idea might be useful, please feel free to reopen so we can discuss further.
I'm looking for an event similar to
didFind
but which would fire every time source received an updated object data. In my case, this happens throughlinked
property of jsonapi response. I've tried to usedidTransform
event, but it does not suit me well since it contains raw data, but otherwise works with some filtering applied, which is quite dirty.I'm not sure this is good idea at all but if you think that it's worth considering, I'd love to contribute (with a little guidance).
Thanks for a nice project though! ✨
The text was updated successfully, but these errors were encountered: