Fork me on GitHub
#cljsrn
<
2021-09-14
>
thomas07:09:35

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

Krishan V11:09:09

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.

Krishan V16:09:04

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

mccraigmccraig15:09:11

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

gammarray15:09:52

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

thheller15:09:42

just a regular fn, don't need the bind

thheller15:09:29

:onLayout (fn [e] ...)

gammarray16:09:07

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

gammarray16:09:37

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

thheller16:09:48

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

gammarray16:09:41

awesome, that did it. thanks!