This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-11-01
Channels
- # announcements (10)
- # asami (2)
- # babashka (10)
- # beginners (55)
- # biff (37)
- # calva (9)
- # cherry (1)
- # clj-kondo (11)
- # clojure (221)
- # clojure-bay-area (12)
- # clojure-europe (77)
- # clojure-hungary (3)
- # clojure-nl (5)
- # clojure-norway (12)
- # clojurescript (11)
- # cursive (1)
- # data-science (11)
- # emacs (27)
- # figwheel (3)
- # fulcro (11)
- # graphql (5)
- # helix (7)
- # honeysql (3)
- # humbleui (9)
- # interceptors (2)
- # introduce-yourself (2)
- # kaocha (12)
- # lsp (27)
- # malli (6)
- # nbb (70)
- # off-topic (6)
- # re-frame (6)
- # react (3)
- # reitit (9)
- # releases (2)
- # scittle (29)
- # shadow-cljs (26)
- # sql (13)
- # tools-deps (61)
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 #cljtogether
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?