Re: [ClojureScript] Re: Use #js in macro

2014-02-23 Thread Kashyap CK
On Sunday, February 23, 2014 10:25:32 PM UTC+5:30, Brandon Bloom wrote: > > What do I need to :require in my clj file to access js-obj? > > Unfortunately, you need to use fully qualified symbols with syntax quote. The > reader resolves them in the Clojure environment, not the ClojureScript > env

Re: [ClojureScript] Best way to pass/read a complete EDN string to clojurescript from the page.

2014-02-23 Thread Boris Kourtoukov
Ah nice! Learn something new every day. :) I think this is indeed the best solution. On Sunday, February 23, 2014 8:29:24 AM UTC-5, Moritz Ulrich wrote: > Won't get renamed with ^:export metadata. > > Am 23.02.2014 00:09 schrieb "Boris Kourtoukov" : > > Would that still work with advanced comp

[ClojureScript] Re: ANN: ankha (Om data inspector)

2014-02-23 Thread Conrad Barski
On Saturday, February 22, 2014 7:55:10 PM UTC-6, Joel Holdbrooks wrote: > Ankha is a generic data inspector for use with Om. You can use it to > interactively view your application's state or any other supported data > structure (see README). > > Learn more here: https://github.com/noprompt/ankh

[ClojureScript] Re: ANN: ankha (Om data inspector)

2014-02-23 Thread Conrad Barski
On Saturday, February 22, 2014 7:55:10 PM UTC-6, Joel Holdbrooks wrote: > Ankha is a generic data inspector for use with Om. You can use it to > interactively view your application's state or any other supported data > structure (see README). > > Learn more here: https://github.com/noprompt/ankh

[ClojureScript] Re: ANN: ankha (Om data inspector)

2014-02-23 Thread Conrad Barski
On Saturday, February 22, 2014 7:55:10 PM UTC-6, Joel Holdbrooks wrote: > Ankha is a generic data inspector for use with Om. You can use it to > interactively view your application's state or any other supported data > structure (see README). > > Learn more here: https://github.com/noprompt/ankh

Re: [ClojureScript] Is it possible to use React component from om?

2014-02-23 Thread David Nolen
Om uses React's DOM components so I sure hope so ;) On Sunday, February 23, 2014, Abdullah Mamun wrote: > Hi all, > > After read om documentation, I really liked Cursor concept in om. > > Both om and React have same rendering module. Is there any way to use > React component from om? > > Br, > M

[ClojureScript] Is it possible to use React component from om?

2014-02-23 Thread Abdullah Mamun
Hi all, After read om documentation, I really liked Cursor concept in om. Both om and React have same rendering module. Is there any way to use React component from om? Br, Mamun -- Note that posts from new members are moderated - please be patient with your first post. --- You received t

Re: [ClojureScript] Om application - usage of paths for nested items

2014-02-23 Thread David Nolen
Instead of using paths, I probably would have done this via some kind of id. David On Sat, Feb 22, 2014 at 11:07 PM, Colin Kahn wrote: > Hi, > > I'm mainly an Angular dev that's been playing around with Om. I decided to > make a test application, one that included editing, a recursive tree, >

Re: [ClojureScript] Re: Use #js in macro

2014-02-23 Thread Brandon Bloom
> What do I need to :require in my clj file to access js-obj? Unfortunately, you need to use fully qualified symbols with syntax quote. The reader resolves them in the Clojure environment, not the ClojureScript environment. -- Note that posts from new members are moderated - please be patient

Re: [ClojureScript] Re: Use #js in macro

2014-02-23 Thread Kashyap CK
I am also trying to write a macro but am not able to figure out how to get the clojurescript symbols inside the clj file that I am writing the macros in. What do I need to :require in my clj file to access js-obj? Regards, Kashyap On Saturday, February 22, 2014 10:21:46 PM UTC+5:30, David Nolen

[ClojureScript] Re: ANN: om-sync

2014-02-23 Thread vladislav p
Wanted to offer a point of view on " 3. Keeping the views up-to-date. " I do not have any empirical results to suggest it a viable alternative, but still.. I think the problem is so difficult due to the cardinality of the set of possible relations/dependencies that the views can represent. So

Re: [ClojureScript] Best way to pass/read a complete EDN string to clojurescript from the page.

2014-02-23 Thread Moritz Ulrich
Won't get renamed with ^:export metadata. Am 23.02.2014 00:09 schrieb "Boris Kourtoukov" : > Would that still work with advanced compilation? I can't quite recall if > you-app.core/start would be renamed by Google closure compiler? > > -- > Note that posts from new members are moderated - please b