Giter VIP home page Giter VIP logo

Comments (6)

fermuch avatar fermuch commented on May 24, 2024

For those kind of forms with lots of inputs, I usually edit the fields' onChange with lodash' _.debounce so they get called only once.

from simple-react-form.

andrewvmail avatar andrewvmail commented on May 24, 2024

@fermuch gotcha thanks!!

from simple-react-form.

andrewvmail avatar andrewvmail commented on May 24, 2024

@fermuch do i just put an onChange as a prop to Field?

from simple-react-form.

fermuch avatar fermuch commented on May 24, 2024

I use custom fields, so I edit those fields. For example, if you are using simple-react-form-material-ui's Text field, edit this line: https://github.com/nicolaslopezj/simple-react-form-material-ui/blob/master/src/text.jsx#L38-L40 so this.props.onChange is only called once.

On the constructor, you can add:

constructor (props) {
  super(props)
  this.state = { value: props.value }

  // this line was added
  this.onChangeDebounced = _.debounce(props.onChange, 250); // debounce to 250ms
}

And on the onChange function:

onChange (event) {
  this.setState({ value: event.target.value })
  if (this.props.changeOnKeyDown) {
    // this line changed
    this.onChangeDebounced(event.target.value)
  }
}

from simple-react-form.

andrewvmail avatar andrewvmail commented on May 24, 2024

Thanks @fermuch

from simple-react-form.

nicolaslopezj avatar nicolaslopezj commented on May 24, 2024

Performance should be improved in v2

from simple-react-form.

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.