Fork me on GitHub
#clojurescript
<
2016-02-29
>
jbaiter00:02:05

does anybody have experience with doing i18n in clojurescript? I'm building a re-frame/reagent application and would like to add localization to it

george.w.singer04:02:24

Is it possible to use a [.jsx file] (https://github.com/xiaolin/react-image-gallery/blob/master/src/ImageGallery.react.jsx) that makes import/export statements (i.e., ECMA 6) within clojurescript?

kmandrup09:02:12

Way to go @mfikes simple_smile Congrats!

kmandrup09:02:31

React Native and mobile apps are sooo 2015, now it's all about Virtual Reality! https://www.youtube.com/watch?v=ty2bFeOdGeI

danlucraft09:02:46

Celebrity JavaScript frameworks, is there anything they can’t do?!

kmandrup10:02:09

For anyone interested or using #C07V8N22C please help out writing a basic API overview https://github.com/tonsky/datascript/wiki/API-overview

escherize12:02:44

So, if anyone is interested in finally giving Boot + cljs a shot, I'd love to hear your feedback on this blog post! http://escherize.com/

hjrnunes16:02:51

hey all, what might cause that instead of a function, React sees a string with an hash, like this: “#"

hjrnunes16:02:17

I’m trying to pass a function to the onClick prop of a component created with adapt-react-class

chrisn17:02:00

Hey, I have an issue with a mixed java,clj,cljc project. Basically the cljsbuild system attempts to 'reload' the cljc files as clojure files but it doesn't get the classpath correct to include target/classes or it doesn't do the javac compilation step first; so everything actually compiles and completes but I get about 2000 lines of errors and stack traces dumped to the console.

chrisn17:02:27

root of the problem:

compiler.clj:114 cljsbuild.compiler/reload-clojure
         compiler.clj:105 cljsbuild.compiler/reload-clojure
         compiler.clj:162 cljsbuild.compiler/run-compiler
problem:
Reloading Clojure file "/cortex/wiring_test.cljc" failed.
clojure.lang.Compiler$CompilerException: java.lang.ClassNotFoundException: cortex.impl.ConvOps, compiling:(cortex/impl/layers.cljc:1:1)
       Compiler.java:7391 clojure.lang.Compiler.load
              RT.java:372 clojure.lang.RT.loadResourceScript
              RT.java:363 clojure.lang.RT.loadResourceScript
              RT.java:453 clojure.lang.RT.load
              RT.java:419 clojure.lang.RT.load

chrisn17:02:09

ConvOps is a java class. Note this is a java.lang.ClassNotFoundException, not a clojurescript not found issue.

kmandrup19:02:46

Nice post @escherize! I'd love to use Boot with cljs simple_smile

noisesmith21:02:22

chrisn: why would the cljs compiler see any reference to a java class while loading your cljc file?

noisesmith21:02:43

I mean I am assuming the error isn't just that you forgot to put the reference to the class in a #?(:clj ...) block