GithubHelp home page GithubHelp logo

bind callbacks to props about recompose HOT 6 CLOSED

acdlite avatar acdlite commented on July 20, 2024
bind callbacks to props

from recompose.

Comments (6)

acdlite avatar acdlite commented on July 20, 2024

I've been thinking more about this lately. mapPropsOnChange() is supposed to address this, but it's not clear from the documentation.

from recompose.

acdlite avatar acdlite commented on July 20, 2024

I think we should rename mapPropsOnChange() so it's clearer what it actually does. Perhaps mapDependentProps()?

from recompose.

istarkov avatar istarkov commented on July 20, 2024

Yes I use mapPropsOnChange for this,
look's like current version of mapPropsOnChange is my favorite HOC now :-)
(I almost finished independent of svg libs chart component http://recordit.co/xXaSy4WM2W using just recompose and functional components,
and mapPropsOnChange is super useful for such component)

About name, I like both :-)

from recompose.

acdlite avatar acdlite commented on July 20, 2024

Another idea:

import { Component } from 'react'
import createElement from './createElement'
import createHelper from './createHelper'

const withAttachedProps = (createProps, BaseComponent) =>
  class extends Component {
    attachedProps = createProps(() => this.props)
    render() {
      return createElement(BaseComponent, {
        ...this.props,
        ...this.attachedProps
      })
    }
  }

export default createHelper(withAttachedProps, 'withAttachedProps')

createProps() is called once, and the returned object (this.attachedProps) never changes.

Example:

const IncrementButton = withAttachedProps(
  getProps => ({
    onClick: event => getProps().dispatch({ type: INCREMENT })
  }),
  'button'
)

from recompose.

istarkov avatar istarkov commented on July 20, 2024

Yes it's better than mapPropsOnChange(['dispatch'], ...

from recompose.

istarkov avatar istarkov commented on July 20, 2024

Thank You!!!!
#81

from recompose.

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.