Files
16gagent/.benchmark/hr/frontend/hooks/useApprovals.ts
T
2026-06-06 10:40:48 +08:00

36 lines
900 B
TypeScript

"use client";
import { useState, useEffect, useCallback } from "react";
// Generic data type for approvals
type Approval = Record<string, unknown>;
/**
* Fetch and manage approvals data.
*/
export function useApprovals() {
const [data, setData] = useState<Approval[]>([]);
const [loading, setLoading] = useState(true);
const [error, setError] = useState<string | null>(null);
const fetchData = useCallback(async () => {
try {
setLoading(true);
setError(null);
const res = await fetch(`/api/approvals`);
const json = await res.json();
setData(Array.isArray(json) ? json : json?.data || []);
} catch (e) {
setError(e instanceof Error ? e.message : "Failed to load data");
} finally {
setLoading(false);
}
}, []);
useEffect(() => {
fetchData();
}, [fetchData]);
return { data, loading, error, refetch: fetchData };
}