This commit is contained in:
Jamie Curnow
2025-09-02 23:56:00 +10:00
parent a12553fec7
commit ebd9148813
355 changed files with 8621 additions and 18874 deletions

View File

@@ -0,0 +1,18 @@
import { useQuery } from "@tanstack/react-query";
import { getHostsReport } from "src/api/backend";
const fetchHostReport = () => getHostsReport();
const useHostReport = (options = {}) => {
return useQuery<Record<string, number>, Error>({
queryKey: ["host-report"],
queryFn: fetchHostReport,
refetchOnWindowFocus: false,
retry: 5,
refetchInterval: 15 * 1000, // 15 seconds
staleTime: 14 * 1000, // 14 seconds
...options,
});
};
export { fetchHostReport, useHostReport };