react-art
react-art copied to clipboard
React Bridge to the ART Drawing Library
I have read the issue 17 and test source. https://github.com/reactjs/react-art/issues/17 https://github.com/reactjs/react-art/blob/master/src/__tests__/ReactART-test.js#L55-L59 And I think there is no way to change the render mode. In ReactART.js, there is requiring the art/modes/fast,...
Hy! I would like to use it but I find it difficult now. At least add your example ( http://jsfiddle.net/JMZc5/1/ ) as it helped me more than the readme in...
``` "react": "^0.14.0", "react-art": "^0.14.0", "react-dom": "^0.14.0", ``` Conditional elements in nested elements will throw traverseParentPath errors. Do i need to downgrade react, or is react-art not intended to work...
I don't know if it's just me, but it seems like doing [this](https://github.com/reactjs/react-art/blob/master/examples/vector-widget/VectorWidget.js#L75-L116) is a bit harsh for performance. There's a lot going on behind the scenes right (like React...
Perhaps I'm doing something trivially wrong, but with the below code which draws 2000 random rectangles on the canvas, react-art runs at about 5fps on my machine. The comparable code...
With [0.14 React release](https://facebook.github.io/react/blog/2015/10/07/react-v0.14.html) the core React library is split from the DOM renderer in order to encourage projects like this to create their own rendering system. Are there plans...
I expected setting `strokeWidth={0}` to cause no stroke to be rendered (even when `stroke` color is set). However, the canvas draws it anyway because it doesn't accept a `lineWidth` of...
I hit a problem where subsequent render iterations on a Shape with a key in a collection didn't modify the property. The original bound mousedown event handler was still being...
It doesn't seem to be possible to bind event handlers to the root Surface object. Given the following, the `mouseDown` handler never gets called: ``` ... ```