Conrad VanLandingham

Results 23 comments of Conrad VanLandingham

@Paol-imi thanks. I've started doing this. `react-native`'s renderer is quite a bit different. However, I did find the internal renderer methods on react-native's end that could be helpful: - [`removeChildFromContainer`](https://github.com/facebook/react-native/blob/master/Libraries/Renderer/implementations/ReactNativeRenderer-dev.js#L4242)...

@Paol-imi yep, that sounds in line with the things I was going to try. I can confirm that appending before removing causes a crash, but I’ll keep trying some things...

@Paol-imi i have a feeling there's a higher level conceptual outage on my end. If I recreate the demo you specify here - https://paol-imi.github.io/react-reparenting/docs/reparentable - and add `console.log` to each...

Just as an update, I wasn't able to get anywhere on this without having to resort to writing native code, which might be the only way to get this to...

I understand now. Some of your explanation in the first part of your comment sounds different then what I remember reading in the docs, but I probably didn't understand. In...

> I think the choice I would make would be to try to reuse the Native code of the RCTUIManager for the append, remove and insertBefore methods. If in the...

Did you all ever figure out a way around this? It seems like for me the recall() promise never even gets rejected, as my route error handlers don't pick it...

I am now going to assume this is a bug with `ember-auth`, as the http://ember-auth-rails-demo.herokuapp.com/ demo app triggers the same error when I try to `App.reset()`: ``` EmberAuthRailsDemo.reset() Error while...

Ran the `ember-auth-rails-demo` locally, here's a relevant trace with line numbers for `ember-auth-rememerable`. If I completely remove `ember-auth-rememerable` from source, I don't get an error on reset() any more. If...

I seemed to have so far fixed this error with the following patches (note this is coffeescript not emberscript): ``` coffeescript # in an initializer: app.inject 'adapter', 'auth', 'auth:main' #...