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
{{ message }}
This repository was archived by the owner on Jun 16, 2020. It is now read-only.
Hi,
I'm pretty new in reactive programming and immutable stuffs.
I have one question, is there any easy way to get previous state of state variable? (I even don't know how to ask about it properly)
return hg.state({
frame: frame
});
and frame var has been changed to other value, but then I would like to have previous state of it?
Can you help me ?:)
Thanks for understanding
Artur
The text was updated successfully, but these errors were encountered:
If I understand you correctly, you would like to have a history with changes. The observable (hg,state()) does not offer an API for this by default.
In other words, it's up to you to save the data you need, store it and query it the way you want it.
Thanks for fast reponse.
So I'm not sure if you familliar with mori.js but there are a lists and I can operate on this object and I would like to ask if it is propery way to use mori and mercury together?
There are multiple ways to use mori and mercury together, depending on how much you want to experiment with the situation :). You will probably want to replace this https://github.com/Raynos/main-loop/blob/master/index.js with something else. You can check the index.js in mercury where main-loop is used.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi,
I'm pretty new in reactive programming and immutable stuffs.
I have one question, is there any easy way to get previous state of state variable? (I even don't know how to ask about it properly)
return hg.state({
frame: frame
});
and frame var has been changed to other value, but then I would like to have previous state of it?
Can you help me ?:)
Thanks for understanding
Artur
The text was updated successfully, but these errors were encountered: