feat: add custom hooks for common patterns

- Add useLoadingState hook for managing loading states
- Add useDebounce hook for debouncing values/callbacks
- Add useApiCall hook for API call management with error handling
- Add usePagination hook for pagination logic
- Create centralized hooks/index.ts for exports
- Reduce code duplication across components
This commit is contained in:
Vivek R
2025-07-16 20:01:32 +05:30
parent 82fdd06873
commit 295571f81a
5 changed files with 340 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
import { useState, useCallback } from 'react';
interface LoadingState<T> {
data: T | null;
isLoading: boolean;
error: Error | null;
execute: (...args: any[]) => Promise<T>;
reset: () => void;
}
/**
* Custom hook for managing loading states with error handling
* Reduces boilerplate code for async operations
*/
export function useLoadingState<T>(
asyncFunction: (...args: any[]) => Promise<T>
): LoadingState<T> {
const [data, setData] = useState<T | null>(null);
const [isLoading, setIsLoading] = useState(false);
const [error, setError] = useState<Error | null>(null);
const execute = useCallback(
async (...args: any[]): Promise<T> => {
try {
setIsLoading(true);
setError(null);
const result = await asyncFunction(...args);
setData(result);
return result;
} catch (err) {
const error = err instanceof Error ? err : new Error('An error occurred');
setError(error);
throw error;
} finally {
setIsLoading(false);
}
},
[asyncFunction]
);
const reset = useCallback(() => {
setData(null);
setError(null);
setIsLoading(false);
}, []);
return { data, isLoading, error, execute, reset };
}