Hi, can you recommend a grid that allows nested values and are compatible with clojurescript. By compatible I mean, it compiles successfully ?
I was just talking up Helix and drew a blank on how Helix apps handle complex state management. Thought I would ask here. Are folks using anything following the Flux architecture? Other? Thx!
in general, I look for purpose-built tools for the problem I'm trying to solve and adopt those. e.g. react-query for data fetching, react-router for navigation, react-hook-forms for form handling
it's often easier for me to write a thin wrapper around these tools, and leverage all of the features they have, than it is to adopt a global state management library and try and build them myself
i'm working on a CLJS-first library for data fetching, but it's slow going. you can check it out over at https://github.com/lilactown/exo. Its development is being funded by #clj-together
Thin wrappers! The Lisp Way! Yep. In Matrix I leverage existing useful stuff by wrapping them with Matrix proxies. That way they all end up talking to each other and my app thru a standard bus, if you will.
Can anyone link good example repos?