Fork me on GitHub
#cljsrn
<
2016-02-12
>
drapanjanas07:02:37

@gphilipp: try using same configuration of reconciler :root-render and :root-unmount as in original template. Now you are using #(.render js/React %1 %2) which will not work with figwheel-bridge.

gphilipp11:02:15

thanks @drapanjanas. I updated my code but it still doesn’t work https://github.com/gphilipp/game-log/blob/89bbc99f31acf9cdbdc5289dcf04a24a2b27c5fc/src/game_log/ios/core.cljs#L203-L204. I didn’t mention that the UI is showing correctly (even before the modification), the error occurs when I type enough text in the input to trigger the autocompleter. I don’t understand why the uri I’m using (http://wikipedia…) is passed through the figwheel bridge (what is the link) ?

drapanjanas12:02:51

@gphilipp figwheel-bridge shims some things from goog.\ to load the scripts. This might be the problem if you use the same goog. functions in your code, then original behavior is expected but it is not. I guess that might be a limitation of current approach.

gphilipp12:02:56

@drapanjanas: ok, I’ll use something else than goog then, thanks !

podviaznikov17:02:50

Hey everyone, just curious if anyone tried to use some auth/login modules like https://github.com/adamjmcgrath/react-native-simple-auth or https://github.com/auth0/react-native-lock-ios and had any success