This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-01-22
Channels
- # aatree (21)
- # announcements (10)
- # avi (1)
- # aws (15)
- # beginners (96)
- # boot (269)
- # braid-chat (92)
- # cider (9)
- # clara (10)
- # cljs-dev (3)
- # cljsjs (14)
- # cljsrn (20)
- # clojure (198)
- # clojure-art (3)
- # clojure-hamburg (2)
- # clojure-ireland (4)
- # clojure-russia (117)
- # clojure-spain (3)
- # clojured (1)
- # clojurescript (253)
- # code-reviews (6)
- # community-development (7)
- # conf-proposals (52)
- # core-async (4)
- # cursive (4)
- # datomic (4)
- # devcards (1)
- # emacs (59)
- # euroclojure (5)
- # funcool (1)
- # hoplon (39)
- # human (1)
- # jobs (4)
- # ldnclj (15)
- # ldnproclodo (1)
- # leiningen (3)
- # mount (37)
- # off-topic (14)
- # om (77)
- # perun (10)
- # proton (12)
- # rdf (1)
- # re-frame (9)
- # reagent (42)
- # ring-swagger (10)
- # yada (50)
In https://github.com/Day8/re-frame/blob/1ceb5acc63d576d60f9303459a6a3e9cd9d1ceed/src/re_frame/middleware.cljs#L41 there are a lot of references to core.async
in the justification of log-ex
. If core.async
was removed the justification should be adjusted as well.
Hi, re-framers. What is ideomatic way or convention to render server validation errors in a form components?
@nicola re-frame doesn't make any assumptions about the visual design, if that's what you mean.
I know, but most of apps should render errors in a form ;) Should I create special path in app-db for every form and in case of errors put them there? Let's take as example sign-in or sign-up forms. How do you organize structure of app-db for this?
@nicola: I actually learned about this for the first time recently as well from the code in here: https://github.com/carouselapps/ninjatools/blob/master/src/cljs/ninjatools/auth.cljs You can see my take on it at https://github.com/sooheon/tomaton