react.backbone
react.backbone copied to clipboard
Plugin for React to make Backbone migration easier
I read some articles on React Props and State and get confused about that. props should not be modified if I didn't misunderstand props and state... when using react.backbone, the...
Now I am able to attach mixin only for model/collection present in the component props. If the model is present **deeper** in props then cannot add mixin for those. It...
We spent nearly an hour to find out that automatic re-rendering of Collections does indeed work. We took so long, since the same Jasmine code to assert the changed DOM...
Believe @markijbema can shed some light on this but I couldn't find an answer: https://github.com/clayallsopp/react.backbone/blob/master/react.backbone.js#L37 is `component.onModelChange` a React component property? or added by react.backbone mixin? I couldn't find any...
I've added support of `shouldComponentUpdate` so you can control whatever a change should re-render the view or not. For more details : [Updating-shouldcomponentupdate](https://facebook.github.io/react/docs/component-specs.html#updating-shouldcomponentupdate) example : ``` var UserViewComponent = React.createBackboneClass({...
Components often need to react to Backbone models that are introduced during the component's lifecycle. (e.g. a model returned by a function that is stored in this.state). At present, I...
I'm trying to find a good way to use this with [react-router](https://github.com/rackt/react-router). It works wonderfully at the collection level, but I'm not sure how I could set the model on...