Fork me on GitHub
#helix
<
2022-11-01
>
geraldodev10:11:51

Hi, can you recommend a grid that allows nested values and are compatible with clojurescript. By compatible I mean, it compiles successfully ?

kennytilton20:11:45

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!

lilactown20:11:35

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

lilactown20:11:41

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

lilactown20:11:37

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 #cljtogether

👀 1
kennytilton22:11:38

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.

colliderwriter23:11:39

Can anyone link good example repos?