This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-12-21
Channels
- # adventofcode (24)
- # announcements (1)
- # beginners (122)
- # braveandtrue (9)
- # calva (45)
- # cider (24)
- # cljdoc (8)
- # cljs-dev (23)
- # clojure (112)
- # clojure-europe (2)
- # clojure-india (2)
- # clojure-italy (36)
- # clojure-nl (3)
- # clojure-spec (32)
- # clojure-uk (35)
- # clojurescript (52)
- # core-typed (12)
- # cursive (4)
- # datomic (61)
- # emacs (4)
- # figwheel-main (2)
- # fulcro (14)
- # hoplon (5)
- # hyperfiddle (1)
- # jobs-discuss (6)
- # kaocha (5)
- # leiningen (2)
- # nrepl (15)
- # off-topic (62)
- # re-frame (26)
- # reagent (39)
- # ring (3)
- # shadow-cljs (56)
- # spacemacs (8)
- # specter (5)
- # tools-deps (1)
- # yada (2)
Morning
morning
Hi all, good morning.. I am looking for some sample data entry CRUD application using cljs and reagent
Does anyone have any open source git repo?
Pls advise
@manas.marthi - I have not seen anything like that kicking around if I am honest...
Should be pretty easy to do from a scratch CLJS example app though, particularly if you handle the DB interactions on the Server Side by writing an API for that stuff for the CLJS app to interact with.
(Thinking about that, unless you were using a Client-Side DB it would HAVE to be done that way, so *facepalm* - it's early I am tired)
@maleghast yeah I am looking to create cljs ui talking to server via REST calls..
Not sure how to access form fields on the UI to call validation functions and post the form data via json and show thebstatus
Is there a better way than (.-value (.-target e))
to access fields?
Not sure what is the established CLJS API to access form fields and run validation
I saw API that looked like js/xxx
functions
Not sure is there something clojurish
Thank you
Any recommended API to access individual form fields and show validation errors ? Say, with style changes like border color changes?
ditto
the section in the middle of this article about why Toyota centralised hiring is so interesting, in the context of how large corporate structures often end up resembling feudal societies https://sloanreview.mit.edu/article/how-to-change-a-culture-lessons-from-nummi/
(under the What Is the Nature of a Good Company-Employee Relationship?
header)
https://voidlinux.org/news/ these advent of void posts are about useful Linux things
Those snow flakes on their website are too much for me 😂 I keep wanted to fan the "bugs" away
Ok, one gotcha, don’t just mix spec and check gens, they seem to have some differences, for example string-alphanumeric
works differently…
(gen/generator? gen/string-alphanumeric)
=> true
(gen/generator? sg/string-alphanumeric)
=> false
(gen/generator? (sg/string-alphanumeric))
=> true
Ssh.... I slipped a bit of Clojure into production today 😳