helix

2022-11-01T10:42:51.889919Z

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

kennytilton 2022-11-01T20:06:45.378899Z

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!

lilactown 2022-11-01T20:32:35.576769Z

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

lilactown 2022-11-01T20:33:41.232219Z

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

lilactown 2022-11-01T20:35:37.207829Z

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

👀 1
kennytilton 2022-11-01T22:52:38.454379Z

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.

2022-11-01T23:41:39.542359Z

Can anyone link good example repos?