Code Monkey home page Code Monkey logo

Comments (3)

anthonyshort avatar anthonyshort commented on May 27, 2024

It's just about ready for a proper release, the main things left are just the docs, which would help with these sort of questions.

If you've ever used Facebook's React, the API is very similar. We're probably going to things differently as the library develops though.

state is for internal component data. Only the component can change this and it can't be access or changed from anywhere else. This is updated via this.setState().

props is for external data. This is what is passed down from parent components. The only place to change props directly is on the scene. You can set the props of child components during the render hook.

var Child = component({
  initialState: function(){
    return { 
      name: 'Tom'
    };
  },
  render: function(props, state){
    return dom('div', [
      props.name,
      state.name
    ])
  }
});

var Parent = component({
  render: function(props, state){
    return dom('div', [
      Child({ name: 'Jerry' }) // Compose another component inside, setting the props 
    ]);
  }
});

Parent.render(document.body);

from deku.

tcoats avatar tcoats commented on May 27, 2024

Brilliant, thank you.

I'm going to start using it. The afterMount and beforeUnmount look like the perfect way to integrate other plugins like leafletjs.

from deku.

anthonyshort avatar anthonyshort commented on May 27, 2024

Great! Let me know if you have any problems. Specifically let me know if the API feels awkward anywhere.

from deku.

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.