패키지 목록
@hua-labs/hooks
v1.1.3
React
Hooks
Shared React hooks for the HUA ecosystem.
$npm install @hua-labs/hooks
제공 훅
useLoading
로딩 상태를 관리하는 훅
useAutoScroll
자동 스크롤을 제어하는 훅
usePerformanceMonitor
성능 메트릭을 모니터링하는 훅
API Reference
useLoading(options?)
| 반환값 | Type |
|---|---|
| isLoading | boolean |
| startLoading | () => void |
| stopLoading | () => void |
| withLoading | <T>(fn: () => Promise<T>) => Promise<T> |
useAutoScroll(options?)
| 반환값 | Type |
|---|---|
| containerRef | RefObject<HTMLElement> |
| scrollToBottom | () => void |
| scrollToTop | () => void |
| isAtBottom | boolean |