Coder Social home page Coder Social logo

Comments (4)

mquan avatar mquan commented on July 28, 2024

I'm not aware of the convention of calling render method. I find this to be less efficient and possibly not correct to always rerender on cortex update than simply calling setProps. Can you point me to the react documentation that suggests this. Thanks

from cortex.

mquan avatar mquan commented on July 28, 2024

Nvm, I found the doc here https://facebook.github.io/react/docs/component-api.html#setprops

I don't think using forceUpdate is the solution here. I'll investigate why render does not pick up the updated cortex. May be it has some builtin comparison that does not recognize props changes because cortex isn't immutable.

from cortex.

mquan avatar mquan commented on July 28, 2024

In the meantime, you can follow the suggestion here facebook/react#4087

Basically, you manage the state of top level component instead of using props.

from cortex.

mquan avatar mquan commented on July 28, 2024

I added the following to the README, let me know if you have any question

class MyComponent extends React.Component {
  constructor(props) {
    super(props);

    // Assume you pass your data into props as myData
    var myCortex = new Cortex(props.myData, (updatedCortex) => {
      this.setState({myCortex: updatedCortex});
    });

    this.state = {myCortex: myCortex};
  }

  render() {
    // access cortex data from this.state.myCortex
  }
}

from cortex.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.