This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-07-27
Channels
- # beginners (43)
- # boot (1)
- # cider (7)
- # cljdoc (10)
- # clojure (110)
- # clojure-boston (1)
- # clojure-finland (2)
- # clojure-italy (19)
- # clojure-losangeles (1)
- # clojure-new-zealand (1)
- # clojure-nl (4)
- # clojure-spec (34)
- # clojure-uk (163)
- # clojurescript (136)
- # code-reviews (1)
- # component (13)
- # cursive (18)
- # datomic (99)
- # emacs (14)
- # events (4)
- # fulcro (14)
- # hoplon (15)
- # hyperfiddle (3)
- # jobs (3)
- # jobs-discuss (1)
- # lein-figwheel (10)
- # onyx (1)
- # pedestal (8)
- # re-frame (5)
- # reitit (4)
- # rum (1)
- # shadow-cljs (317)
- # spacemacs (24)
- # specter (9)
- # sql (2)
- # tools-deps (6)
- # yada (3)
hello people, just release an article on how to wrap regular React components to use with Fulcro, hope you enjoy it 🙂 https://medium.com/@wilkerlucio/using-any-react-ui-kit-with-fulcro-82cce271b9cc
hey buddy, this is really neat!
i know some people were put off by the primitive dom syntax we inherited from om.next (hence the appeal of soblano in reagent, rum, etc)
but i feel like the one we ultimately settled on is just as expressive but much more performant, and has CSS hooks
it’s really cool to see how those internals could be repurposed for arbitrary JS components!
glad you enjoyed man, I figured that when I was trying to port the reakit, the pieces have a good separation so we can reuse, thanks to @U0CKQ19AQ
Actually, @U09FEH8GN helped out on that one
nice job for both of you 🙂
FWIW in my react stuff I have a simple generic (dom/native rk/Image {} ...)
helper fn (actually just called $
to be shorter). saves creating all the factory fns and can use the macro trick
($ rk/Heading :.head {:as "h3"} "Card Heading")
is good enough imho and can be more performant due to the macro tricks
Ah, and i forgot!!! The new dom stuff was heavily based on the work and ideas of @U05224H0W
yeah we totally copied all of @U05224H0W’s great ideas!