This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-04-05
Channels
- # beginners (23)
- # boot (84)
- # braid-chat (2)
- # bristol-clojurians (1)
- # cider (53)
- # cljs-dev (34)
- # cljsrn (13)
- # clojure (138)
- # clojure-dusseldorf (5)
- # clojure-italy (1)
- # clojure-russia (164)
- # clojure-uk (41)
- # clojurescript (80)
- # clr (2)
- # core-async (6)
- # core-logic (25)
- # core-matrix (14)
- # cursive (10)
- # data-science (4)
- # datomic (4)
- # emacs (3)
- # funcool (6)
- # hoplon (127)
- # jobs-discuss (4)
- # keechma (36)
- # ldnclj (5)
- # lein-figwheel (5)
- # off-topic (5)
- # om (155)
- # onyx (72)
- # overtone (16)
- # parinfer (39)
- # planck (3)
- # protorepl (1)
- # re-frame (11)
- # reagent (5)
- # untangled (22)
I’m looking for a graphs and charts lib that plays well with re-frame. Any recommendations?
Any suggested patterns for fetching data from the server and attaching to the app-db
on page load? The initialize-db
in the template generator is a synchronous function, so I don’t want to block page load when fetching some of the data.
@comamitc: in my initialize-db handler i (dispatch :load-data)
and return some initial state (optionally from local state). Then handle :load-data
with this pattern: https://github.com/Day8/re-frame/wiki/Talking-To-Servers