Joe Pea
Joe Pea
It'd be great if a feature at the language level includes a way to call (or rename) properties or methods that have the same name in different mixins applied to...
Is there a way to get IDE support for TypeScript inside the script tag? I'm using VS Code at the moment, but also have Atom.
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...