This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-11-03
Channels
- # beginners (50)
- # cider (6)
- # cljdoc (2)
- # cljs-dev (19)
- # clojars (2)
- # clojure (20)
- # clojure-dev (35)
- # clojure-italy (2)
- # clojure-norway (12)
- # clojure-uk (17)
- # clojurescript (7)
- # data-science (3)
- # datomic (10)
- # emacs (2)
- # events (1)
- # figwheel-main (2)
- # fulcro (8)
- # graphql (1)
- # juxt (3)
- # nrepl (4)
- # off-topic (23)
- # parinfer (1)
- # pathom (63)
- # re-frame (7)
- # reagent (1)
- # reitit (5)
- # ring-swagger (1)
- # shadow-cljs (23)
- # tools-deps (16)
@tony.kay thank you. The videos help a lot, always insightfull to see you code and whats youre approach & thought process.
Addinng the defextended-defsc
to my project, a bit advanced, going through all the tests and trying to figure it out.
@claudiu you can also take a look at these macros in Om https://github.com/omcljs/om/blob/master/src/main/om/dom.cljc#L139
they are simpler macros that generate macros
the ones in fulcro are based on these but they have all kinds of fancy stuff that makes them harder to understand at first
in that link, above line 161, is all you need for frontend which is pretty tiny
the rest is just for serverside rendering
@U09FEH8GN Thank you, will check those also.