cljsrn

thomas 2021-09-14T07:51:35.224400Z

Hi, thank you for all your information. I think I'll point them to the prod env for the moment.

2021-09-14T11:34:09.227400Z

Hey there, anybody using GraphQL with their RN application? Is there a library in the clojure ecosystem which supports translating a query written in GraphQL DSL to Clojure? Something like Artemis in the Dart ecosystem.

2021-09-14T16:25:04.232200Z

@ferossgp Thanks for the share! Any idea if the client side caching plays well with Fulcro's client side graph database?

mccraigmccraig 2021-09-14T15:52:11.230100Z

is krell compatible with either of the startup-time reduction approaches - ram bundles or hermes ?

gammarray 2021-09-14T15:52:52.230500Z

I'm trying to follow some instructions for adding animation to a layout, but I don't know how to create the cljs equivalent to onLayout={this._setMaxHeight.bind(this)} as seen here: https://i.imgur.com/seGQjqB.png

thheller 2021-09-14T15:53:42.230700Z

just a regular fn, don't need the bind

thheller 2021-09-14T15:54:29.230900Z

:onLayout (fn [e] ...)

gammarray 2021-09-14T16:00:07.231100Z

oh ok, well that gives me Cannot infer target type in expression (. (. event -nativeEvent) -layout)

gammarray 2021-09-14T16:00:37.231300Z

its just a warning, but still... seems like something isnt quite right

thheller 2021-09-14T16:00:48.231500Z

then add (fn [^js event] ...)

gammarray 2021-09-14T16:04:41.231900Z

awesome, that did it. thanks!