Jesus sucks
This commit is contained in:
23
backend/frontend/node_modules/@restart/hooks/esm/useDebouncedState.js
generated
vendored
Normal file
23
backend/frontend/node_modules/@restart/hooks/esm/useDebouncedState.js
generated
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
import { useState } from 'react';
|
||||
import useDebouncedCallback from './useDebouncedCallback';
|
||||
|
||||
/**
|
||||
* Similar to `useState`, except the setter function is debounced by
|
||||
* the specified delay. Unlike `useState`, the returned setter is not "pure" having
|
||||
* the side effect of scheduling an update in a timeout, which makes it unsafe to call
|
||||
* inside of the component render phase.
|
||||
*
|
||||
* ```ts
|
||||
* const [value, setValue] = useDebouncedState('test', 500)
|
||||
*
|
||||
* setValue('test2')
|
||||
* ```
|
||||
*
|
||||
* @param initialState initial state value
|
||||
* @param delayOrOptions The milliseconds delay before a new value is set, or options object
|
||||
*/
|
||||
export default function useDebouncedState(initialState, delayOrOptions) {
|
||||
const [state, setState] = useState(initialState);
|
||||
const debouncedSetState = useDebouncedCallback(setState, delayOrOptions);
|
||||
return [state, debouncedSetState];
|
||||
}
|
||||
Reference in New Issue
Block a user