This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-10-07
Channels
- # beginners (153)
- # cider (2)
- # cljs-dev (1)
- # cljsjs (11)
- # cljsrn (4)
- # clojure (21)
- # clojure-austin (2)
- # clojure-greece (1)
- # clojure-italy (8)
- # clojure-russia (12)
- # clojure-spec (68)
- # clojurescript (35)
- # cursive (4)
- # datomic (2)
- # fulcro (15)
- # off-topic (1)
- # om (1)
- # portkey (35)
- # protorepl (6)
- # re-frame (28)
- # shadow-cljs (13)
- # specter (10)
- # uncomplicate (3)
- # unrepl (7)
re-frame 0.10.2 is out https://github.com/Day8/re-frame/releases/tag/v0.10.2
thank you @danielcompton, great tops on the polling-interval effect on the FAQ https://github.com/Day8/re-frame/blob/master/docs/FAQs/PollADatabaseEvery60.md Noticed also CQRS backend is recommended for re-frame https://github.com/Day8/re-frame/blob/master/docs/FAQs/FullStackReframe.md, is it because it matches better with the even-driven nature of re-frame itself?
Not my docs sorry, I think they’re Mike’s?
Nope Mike too
Reading at the FAQ about clear-subscription-cache!
, I’m wondering if the new error boundaries on React 16 -when Reagent eventually take advantage of it- will allow re-frame to dispose correctly ?
An early prototype. More at https://github.com/Respo/reel . I'm wondering if re-frame does that?
I think re-frisk doest that https://github.com/flexsurfer/re-frisk
@jiyinyiyong in addition to re-frisk ... there's also re-frame-undo
and re-frame-trace
which are related. The later is still under development
@mikethompson will re-frame-trace
will available as profile in re-frame-template
?
@lovuikeng once it gets more solid, yes
But there's still a bit to do
Both respo and reel don't seem to be related to re-frame except for the look 'n feel
Respo is my own virtual DOM lib. I'm not really into Reagent and barely used re-frame. I just think the ideas behind use are similar. And we both get ideas from Elm and Redux.
Not my docs sorry, I think they’re Mike’s?
This is a beginner question. I'm looking at the braid repository ( a chat app in clj/cljs using re-frame) and im curious about a small detail about events. I cant find out how this syntax works https://github.com/braidchat/braid/blob/master/src/braid/client/gateway/helper_views.cljs#L13
specifically the
(on-change-transform (.. e -target -value))
for property access.I think (.. e -target -value)
is equivalent to the threading macro (-> e .-target .-value)
, which unrolled would be (.-value (.-target e))
without the dash it gets interpreted into JS as e.target().value()
, ie. chained method calls.
Thank you
Instead, do all member access using https://github.com/binaryage/cljs-oops