New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@toolz/use-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

@toolz/use-debouncer

A custom React Hook for tracking which API calls are currently in-flight

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

use-debouncer

A custom React Hook for tracking which API calls are currently in-flight. The intention is to keep duplicate "fat-fingered" requests from being made to an API - e.g., when user double/triple clicks on a "Submit" button.

Methodology

The Hook uses a simple queue (Array) of strings - presumably, those strings represent endpoint URLs. It is up the caller to add new calls to the queue, and to remove old calls once a response is received.

Usage

export const useApi = () => {
   const debouncer = useDebouncer();
   
   const post = async (url = '', data = {}, headers = {}) => {
      if (debouncer.isAlreadyInFlight(url))
         return;
      const response = await axios({
         data,
         headers,
         method: 'POST',
         url,
      }).catch(error => {
         debouncer.removeApiCall(url);
      });
      debouncer.removeApiCall(url);
      return response;
   }
   
   return {
      post
   }
}

Methods

.addApiCall()

const API = {
   arguments: {
      url: {
         required,
         format: non - empty string,
      },
   },
   returns: Array of inflight calls,
}

.clearApiCalls()

const API = {
   arguments: {
      // none
   },
   returns: Array of inflight calls,
}

.isAlreadyInFlight()

const API = {
   arguments: {
      url: {
         required,
         format: non - empty string,
      },
   },
   returns: Boolean,
}

.removeApiCall()

const API = {
   arguments: {
      url: {
         required,
         format: non - empty string,
      },
   },
   returns: Array of inflight calls,
}

Examples:

const SomeComponent = () => {
   const debouncer = useDebouncer();
   const endpoint = '/some/endpoint';
   
   const sendRequest = async () => {
      if (debouncer.isAlreadyInFlight(endpoint))
         return;
      debouncer.addApiCall(endpoint);
      await doTheApiCall()
         .catch(() => debouncer.removeApiCall(endpoint));
      debouncer.removeApiCall(endpoint);
   }
   
   return <>
      <button onClick={sendRequest}>
         Send
      </button>
      <br/>
      <button onClick={debouncer.clearApiCalls}>
         Clear
      </button>
   </>
}

Keywords

FAQs

Package last updated on 24 Mar 2021

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

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc