mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-07-26 08:35:41 +00:00
1295c36241
- Fixed TypeScript type assertion issues - Updated imports from api-augment/substrate to api-augment/bizinikiwi - Fixed imgConvert.mjs header and imports - Added @ts-expect-error for runtime-converted types - Fixed all @polkadot copyright headers to @pezkuwi
28 lines
779 B
TypeScript
28 lines
779 B
TypeScript
// Copyright 2017-2025 @pezkuwi/react-hooks authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import { useEffect, useState } from 'react';
|
|
|
|
import { useIsMountedRef } from './useIsMountedRef.js';
|
|
|
|
const DEFAULT_DELAY = 250;
|
|
|
|
// FIXE Due to generics, cannot use createNamedHook
|
|
export function useDebounce <T> (value: T, delay = DEFAULT_DELAY): T {
|
|
const mountedRef = useIsMountedRef();
|
|
const [debouncedValue, setDebouncedValue] = useState(value);
|
|
|
|
useEffect((): () => void => {
|
|
const timeoutId = setTimeout(() => {
|
|
mountedRef.current && setDebouncedValue(value);
|
|
}, delay);
|
|
|
|
// each time something changes, we clears
|
|
return (): void => {
|
|
clearTimeout(timeoutId);
|
|
};
|
|
}, [delay, value, mountedRef]);
|
|
|
|
return debouncedValue;
|
|
}
|