"use client"; import { useState, useEffect, useCallback } from "react"; // Generic data type for logistics type Logistic = Record; /** * Fetch and manage logistics data. */ export function useLogistics() { const [data, setData] = useState([]); const [loading, setLoading] = useState(true); const [error, setError] = useState(null); const fetchData = useCallback(async () => { try { setLoading(true); setError(null); const res = await fetch(`/api/logistics`); 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 }; }