react-famous
react-famous copied to clipboard
React bridge to Famo.us
Hi Piilwon, hope all is well. By they way, I've been making progress at github.com/trusktr/infamous. Will be updating the README soon. Right now it's basically a better version of Famous...
(WIP, don't merge!) This will minimalize the react-famous library, to make it as consumable as possible, not just via NPM, but via GitHub (and hence bower and jspm) as well....
[BUG] DOMElement's reactRoot doesn't need to be removed from parentNode if parent already destroyed.
Here's a temporary fix: ``` js DOMElement.prototype._famousReactRootDestroy = function _famousReactRootDestroy() { let reactRoot = this._famousReactRoot; if (reactRoot) { this._famousUnmountReact(reactRoot); if (reactRoot.parentNode) reactRoot.parentNode.removeChild(reactRoot); this._famousReactRoot = null; } } ``` the difference...
When conditionally rendering a Node, sometimes the Node will be unmounted to be replaced by another one. When this happens, the Node's componentWillUnmount method is called, followed by it's _own_...
Alright, so I've adopted react-famous into my latest project (finally!). It's working great out of the box composing things like `Scene`, `Node`, and `DOMElement` together (using those components directly). But...
I thin this is better because it does cleanup inside the parent node as well.
Hello @pilwon! I want to finish [`rocket:module`](https://forums.meteor.com/t/new-package-rocket-module-to-provide-cjs-amd-es6-modules-for-meteor-packages-with-shared-npm-dependencies/4620) then use it to import this into Famous. I tried to make a basic wrapper for Famous `Node` in my Meteor project to...
I'm gonna send a PR. The general idea is that the package.json should be agnostic of which tool the user uses. For example, see [this package.json](https://github.com/infamous/infamous/blob/master/package.json) file. It is as...
Currently I'm trying to render a scrollview based on data it will fetch from the server. However I'm encountering some problems. It seems that when knowing the number of surfaces...
I started this project extending @trusktr 's `React` + `Famo.us` integration idea posted at https://github.com/Famous/famous-react/issues/10, simply because I didn't want to wait for it forever. ~~I'm still experimenting with it...