This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-08-20
Channels
- # alda (2)
- # beginners (6)
- # boot (25)
- # cider (10)
- # clojars (5)
- # clojure (81)
- # clojure-brasil (1)
- # clojure-dev (2)
- # clojure-russia (19)
- # clojure-spec (21)
- # clojure-uk (69)
- # clojurescript (23)
- # code-reviews (15)
- # cursive (3)
- # datavis (1)
- # datomic (8)
- # euroclojure (3)
- # events (5)
- # flambo (15)
- # hoplon (17)
- # jobs-rus (13)
- # lambdaisland (50)
- # mount (5)
- # off-topic (3)
- # om (1)
- # parinfer (72)
- # proton (1)
- # protorepl (1)
- # re-frame (17)
- # reagent (59)
- # videos (1)
@superstructor @mikethompson cool stuff! Thanks!
Hi. Are there examples of "feature-rich" re-frame apps which make use of websockets, implement file uploads, authorization etc?
@andrewboltachev: i have one... corporate chat app with mobile deployment to iOS and android on cordova, websockets for in-app notifications, camera access, picture upload, JWT auth...
I want to show some stacked bar graphs, anyone got recommendations for something easy to integrate that plays well with re-frame/reagent?
@mccraigmccraig I guess it's not open source though..?
@nilrecurring: ah, no 🙂
@mccraigmccraig Anyway awesome! Does it feel more like out-of-the box or you still have to add much effort to put all the pieces together?
@andrewboltachev: it's not out-of-the-box - re-frame/reagent gives you a way of managing app-state and rendering... you will need libs for other things
that's pretty much par for the clojure/script course though, so it's no different to any other clojure/script project really
@mccraigmccraig Thanks! I've been looking at number of CLJ/S frontend/full-stack solutions, but and re-frame seems to be the right choice out there for me now.
@andrewboltachev: fwiw re-frame is the best UI dev experience i've ever had
I’ve been following the example from: https://github.com/reagent-project/reagent-cookbook/tree/master/recipes/morris
I was reading https://groups.google.com/forum/#!searchin/clojurescript/graphs%7Csort:relevance/clojurescript/n-lkVvTiTkI/mP6BLvowDDYJ which lead me to http://stackoverflow.com/questions/31520217/re-frame-nvd3-graph-doesnt-respond-to-when-its-components-subscriptions-are-u
looks like somehow the values are somehow children of the component in the draw-weight-graph?
ok, so I got it more or less working following the pattern from https://groups.google.com/forum/#!topic/clojurescript/rGcBOvLOhm4 However, I have one remaining issue. When the data changes in the chart I get another svg added to the element div, instead of replacing the element that used to be in the div.