Ovidiu Avasilcai
Ovidiu Avasilcai
Not sure if related but memo doesn't seem to work with mount. ``` const MyComponent = memo(({ children, condition }) => condition ? children : null ); ``` When I...
Willing to provide a hand with this as it's something quite critical in our application. We've gotten to a point that the test files are way to large when loaded...
temporary fix is to use http://babeljs.io/docs/usage/polyfill/ babel-polyfill
Posted this from my phone, I'll update it further when I get home.
So coming back to this, for dealing with circular references, an idea - copying most of it from @godness84 ``` const MyModel = types.model( refExample1: types.reference(types.late((): any => RefExample1)), refExample2:...
Tagging in @mweststrate cause I think he followed the mst-gql issue as well
Sorry, basically they added a solution to their generator to better provide types on circular dependencies without typescript blowing up ```ts const MyModel = types.model( // this blows up in...
I hope @xaviergonz not gonna mind linking him but I've seen he worked a lot on the TS/typings for MST :)
Was just thinking about this after watching the suspense presentations and thought how it could be implemented. TREE -> render -> output html tree with fallbacks rendered & emit ->...
I had a small chat with Dan Abramov via twitter, they're planning to do something like that with Suspense on SSR - my first suggestion. He didn't go into details...