This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-07-04
Channels
- # admin-announcements (14)
- # aleph (3)
- # beginners (75)
- # boot (95)
- # carry (4)
- # cider (23)
- # clojure (39)
- # clojure-android (3)
- # clojure-brasil (2)
- # clojure-dev (17)
- # clojure-gamedev (1)
- # clojure-mexico (12)
- # clojure-poland (12)
- # clojure-romania (1)
- # clojure-russia (10)
- # clojure-spec (8)
- # clojure-uk (36)
- # clojurescript (34)
- # core-async (4)
- # datomic (40)
- # emacs (1)
- # events (7)
- # hoplon (119)
- # instaparse (52)
- # keechma (71)
- # mount (4)
- # off-topic (9)
- # om (4)
- # onyx (3)
- # other-languages (23)
- # protorepl (3)
- # re-frame (9)
- # reagent (26)
- # rethinkdb (5)
- # spacemacs (2)
- # testing (1)
- # yada (1)
Thanks @mccraigmccraig ! Any code example you can point me at? The sample todo app seems to use an atom https://github.com/Day8/re-frame/blob/master/examples/todomvc/src/todomvc/views.cljs#L7
@javazquez: ha, so it does. naughty! have a look further down though, at the checkboxes https://github.com/Day8/re-frame/blob/master/examples/todomvc/src/todomvc/views.cljs#L54 https://github.com/Day8/re-frame/blob/master/examples/todomvc/src/todomvc/views.cljs#L87 which are using respectively props and a sub for the value of the input, and dispatching on change
@mccraigmccraig: Great Thanks!
@mccraigmccraig: is there a need for debounce? If so, is there a common util that folks use.. if not I am fine rolling my own
what are you thinking of debouncing @javazquez ?
@mccraigmccraig: sorry for the cryptic question. I am looking at trying to implement Typeahead with a couple of the fields using an Ajax call to the server
ah, right, so you want a last-call-wins approach... i'm currently implementing something which will do that, but it's only partially complete. i don't know of a ready-to-go solution