Socket
Book a DemoInstallSign in
Socket

visionist-react-input-debouncer

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

visionist-react-input-debouncer

Higher order component for debouncing input change events

1.0.3
latest
npmnpm
Version published
Maintainers
1
Created
Source

react-input-debouncer

A higher-order component for debouncing inputs in react. Works with any component that takes value and onChange props.

Installation

npm install --save react-input-debouncer

Usage

Wrap the component you want to debounce with the debounceInput function. A delay of 250ms will be applied by default if one isn't provided.

import React, { Component } from 'react';
import debounceInput from 'react-input-debouncer';

class Input extends Component {
  render() {
    return (
      <input type="text" {...this.props} />
    )
  }
}

export default debounceInput({ delay: 250 })(Input);

Then simply use the composed component like you would the original.

import Input from './Input.js';

class App extends Component {
  constructor(props) {
    super(props);

    this.state = {
      value: ''
    };
  }

  handleChange(e) {
    console.log('debounced input changed!', e.target.value);

    this.setState({
      value: e.target.value
    });
  }

  render() {
    const { value } = this.state;
    return (
      <div>
        <Input
          type="text"
          value={value}
          onChange={this.handleChange.bind(this)}
        />
      </div>
    );
  }
}

Keywords

react

FAQs

Package last updated on 28 Apr 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.