Framework
Version
Debouncer API Reference
Throttler API Reference
Rate Limiter API Reference
Queue API Reference

useThrottledValue

Function: useThrottledValue()

ts
function useThrottledValue<TValue>(value, options): readonly [TValue, {
  cancel: () => void;
  getExecutionCount: () => number;
  maybeExecute: (...args) => void;
 }]
function useThrottledValue<TValue>(value, options): readonly [TValue, {
  cancel: () => void;
  getExecutionCount: () => number;
  maybeExecute: (...args) => void;
 }]

Defined in: react-pacer/src/throttler/useThrottledValue.ts:36

A high-level React hook that creates a throttled version of a value that updates at most once within a specified time window. This hook uses React's useState internally to manage the throttled state.

Throttling ensures the value updates occur at a controlled rate regardless of how frequently the input value changes. This is useful for rate-limiting expensive re-renders or API calls that depend on rapidly changing values.

The hook returns both the throttled value and the underlying throttler instance for additional control. The throttled value will update according to the leading/trailing edge behavior specified in the options.

For more direct control over throttling behavior without React state management, consider using the lower-level useThrottler hook instead.

Type Parameters

TValue

Parameters

value

TValue

options

ThrottlerOptions

Returns

readonly [TValue, { cancel: () => void; getExecutionCount: () => number; maybeExecute: (...args) => void; }]

Example

tsx
// Basic throttling - update at most once per second
const [throttledValue] = useThrottledValue(rawValue, { wait: 1000 });

// With custom leading/trailing behavior
const [throttledValue, throttler] = useThrottledValue(rawValue, {
  wait: 1000,
  leading: true,   // Update immediately on first change
  trailing: false  // Skip trailing edge updates
});

// Optionally access throttler methods
const handleExecutionCount = () => {
  console.log('Executions:', throttler.getExecutionCount());
};
// Basic throttling - update at most once per second
const [throttledValue] = useThrottledValue(rawValue, { wait: 1000 });

// With custom leading/trailing behavior
const [throttledValue, throttler] = useThrottledValue(rawValue, {
  wait: 1000,
  leading: true,   // Update immediately on first change
  trailing: false  // Skip trailing edge updates
});

// Optionally access throttler methods
const handleExecutionCount = () => {
  console.log('Executions:', throttler.getExecutionCount());
};
Subscribe to Bytes

Your weekly dose of JavaScript news. Delivered every Monday to over 100,000 devs, for free.

Bytes

No spam. Unsubscribe at any time.