mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-09-17 04:10:35 +00:00
React
This commit is contained in:
18
frontend/src/hooks/useHostReport.ts
Normal file
18
frontend/src/hooks/useHostReport.ts
Normal 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 };
|
Reference in New Issue
Block a user