Code Monkey home page Code Monkey logo

Comments (5)

chrisbuttery avatar chrisbuttery commented on May 26, 2024

Hi @voronianski, You just needed to move your handlers into the render method.

import { tree, render, element } from 'deku';

import deku from 'deku';

let Button = {
  render(component) {
    const { props } = component;

    function handleClick(e, component) {
      e.preventDefault();
      let { onToggle } = component.props;
      onToggle();
    }

    return (
      <button onClick={handleClick}>
        {props.playing ? 'Pause' : 'Play'}
      </button>
    );
  }
};

let Container = {
  initialState() {
    return {
      playing: false
    };
  },

  render(component, setState) {
    let { state } = component;

    function handleClick() {
      setState({
        playing: !state.playing
      })
    }

    return (
      <div>
        <div>Some widget content</div>
        <Button playing={state.playing} onToggle={ handleClick} />
      </div>
    );
  }
};

let app = tree(
  <Container someProp="someData" />
);

render(app, document.body);

from deku.

voronianski avatar voronianski commented on May 26, 2024

@chrisbuttery thanks, that should solve the issue. I just thought that creating handlers on every render isn't good idea.

from deku.

anthonyshort avatar anthonyshort commented on May 26, 2024

You also get setState passed in as the third param to handlers. But generally I just do what @chrisbuttery showed you.

from deku.

voronianski avatar voronianski commented on May 26, 2024

@anthonyshort alright I'll follow this pattern. Anyway it will be great to have some input on app.set API as well.

from deku.

anthonyshort avatar anthonyshort commented on May 26, 2024

I'm spending most of tomorrow writing up some documentation so it should make more sense. But the app.set is a way to load data side-ways into the tree rather than needing to pass it down. It's for external data, like communicating with the your JSON API on the server. We're using it for:

  • Routing - since a router is just an external data source
  • Getting the logged in user
  • Communicating with our JSON API

I guess it's sort of like React's context object, but you can't modify it as you go down the tree.

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.