This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-06-26
Channels
- # aleph (5)
- # announcements (16)
- # babashka (36)
- # beginners (161)
- # calva (24)
- # cider (8)
- # circleci (45)
- # clj-kondo (5)
- # cljs-dev (25)
- # cljsrn (5)
- # clojure (116)
- # clojure-europe (10)
- # clojure-nl (18)
- # clojure-uk (14)
- # clojuredesign-podcast (6)
- # clojurescript (50)
- # cursive (12)
- # data-science (8)
- # datomic (8)
- # duct (39)
- # emacs (6)
- # fulcro (21)
- # graalvm (12)
- # kaocha (17)
- # off-topic (184)
- # pathom (1)
- # pedestal (2)
- # re-frame (31)
- # reagent (24)
- # reitit (1)
- # sci (1)
- # shadow-cljs (23)
- # sql (147)
- # tools-deps (8)
- # vrac (3)
- # xtdb (35)
Nothing particularly odd there. Personally I'd do the @ with the subscribe call.
What you describe has happened to me in situations where callbacks are involved in rendering.
The important thing for reagent to work is that the line-chart call is invoked and before it returns all r/atom's it should watch are dereferenced.
Small nit... the clj->js is probably not needed because you're using [:>
which does clj->js for you.
yeah i realized this last night when i was looking into reagent. Thank you. I actually made it work. i removed timestamps/date from x and just use indexes now and it works. It is rendered properly. What i think happened is that lib wont rerender until enough time has passed for it to make redraw make sense. i will dig bit into this and report my findings