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
first of all, thanks for this really cool set of libraries i've felt really productive using these so far!
context: i've been working on a small project based on the HDOM, and i've been using global variables pretty arbitrarily to represent state. i've started running into snags with state updates, which make sense since i'm now doing state updates asynchronously via the FileReader API.
Q: i'm trying to figure out which one of the state management mechanisms provided in this repo which i could most easily use as a replacement. I've toyed with the @thing/atom package, but i don't really need any undo/redo functionality or anything fancy, just something to handle this async case that requires minimal state changes. It seems like there's a bunch of different possible approaches here, so I want to figure out the best way to go about it.
The text was updated successfully, but these errors were encountered:
FYI there a new package for manipulating the DOM more tightly related with stream/reactive programming paradigm: thi.ng/rdom so IMHO could worth to use rstream (there are several examples with hdom).
Anyway the strength of atom package is not only for undo/redo but also in the immutable state paradigm (together with the thi.ng/paths package to have lenses over complex object).
first of all, thanks for this really cool set of libraries i've felt really productive using these so far!
context: i've been working on a small project based on the HDOM, and i've been using global variables pretty arbitrarily to represent state. i've started running into snags with state updates, which make sense since i'm now doing state updates asynchronously via the FileReader API.
Q: i'm trying to figure out which one of the state management mechanisms provided in this repo which i could most easily use as a replacement. I've toyed with the
@thing/atom
package, but i don't really need any undo/redo functionality or anything fancy, just something to handle this async case that requires minimal state changes. It seems like there's a bunch of different possible approaches here, so I want to figure out the best way to go about it.The text was updated successfully, but these errors were encountered: