Re: [ClojureScript] ANN: re-frame 0.1.7 Initial Release

2015-02-26 Thread Colin Yates
The Terry Pratchett quote along gets my vote. This looks great, it really does. The intro alone adds value. My only criticism is that of timing - where was this last year when I started with cljs and om :). Ironically I have ended up with something pretty close in nature, if not elegance to this a

Re: [ClojureScript] Re: What is the up to date summary of cljs macro definition/usage as of 2850?

2015-02-26 Thread Thomas Heller
If you change it to ;; In src/cljs/fancy/fancy.cljs: (ns fancy.fancy (:require-macros [fancy.fancy :as m]) ;; In src/cljs/fancy/core.cljs: (ns fancy.core (:require [fancy.fancy :as fancy])) (fancy/fun 123) should then always equal the macro version (unless you use apply). The name

Re: [ClojureScript] ANN: re-frame 0.1.7 Initial Release

2015-02-26 Thread gvim
On 25/02/2015 11:52, Mike Thompson wrote: A Reagent Framework For Writing SPAs, in ClojureScript. README and source code: https://github.com/Day8/re-frame "Derived data, flowing" in a two-stage, FRP loop. Absolutely no Cursors!! At long last. I got so tired of React's "this only addresses th

Re: [ClojureScript] Re: What is the up to date summary of cljs macro definition/usage as of 2850?

2015-02-26 Thread Peter West
Thanks Thomas. On Thursday, 26 February 2015 19:57:39 UTC+10, Thomas Heller wrote: > If you change it to > > ;; In src/cljs/fancy/fancy.cljs: > (ns fancy.fancy > (:require-macros [fancy.fancy :as m]) > > ;; In src/cljs/fancy/core.cljs: > (ns fancy.core > (:require > [fancy.fancy :a

[ClojureScript] Re: ANN: re-frame 0.1.7 Initial Release

2015-02-26 Thread Jeremy Vuillermet
Really interesting ! -- Note that posts from new members are moderated - please be patient with your first post. --- You received this message because you are subscribed to the Google Groups "ClojureScript" group. To unsubscribe from this group and stop receiving emails from it, send an email

[ClojureScript] Re: ANN: re-frame 0.1.7 Initial Release

2015-02-26 Thread Mike Thompson
On Thursday, February 26, 2015 at 10:19:05 AM UTC+11, Jane Dampney wrote: > On Wednesday, February 25, 2015 at 10:52:23 PM UTC+11, Mike Thompson wrote: > > A Reagent Framework For Writing SPAs, in ClojureScript. > > > > README and source code: https://github.com/Day8/re-frame > > > > "Derived dat

Re: [ClojureScript] Re: ANN: re-frame 0.1.7 Initial Release

2015-02-26 Thread Marc Fawzi
Mike, Do you want to give a talk about it? ;) I'm looking for speakers (local or remote) for our first Reagent meetup in SF. Back to cursors and enabling re-usable components. I'm not sure how isolating control outside of components can lead to re-usable components. Can you explain, please? I'm

Re: [ClojureScript] Re: ANN: re-frame 0.1.7 Initial Release

2015-02-26 Thread Gary Trakhman
I don't think cursors were really ever recommended that strongly. It seems like query solutions like datascript/Relay seem to be the way things are going. I think it's the next stop on the declarative decoupling train that we're all so fond of. This project and others like it are exciting! On T

Re: [ClojureScript] Re: ANN: re-frame 0.1.7 Initial Release

2015-02-26 Thread Marc Fawzi
By re-use I mean sharing outside of the project! Angular components are hard to re-use (not that I ever used it but that's what I heard from people who have) Reagent components I'm building with cursors are easy to reuse and share via maven repo managers like Clojars. Artifactory, etc. I'm sure Rea