mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-11-04 17:35:15 +00:00
19 lines
468 B
TypeScript
19 lines
468 B
TypeScript
import { useQuery } from "@tanstack/react-query";
|
|
import { getHealth, type HealthResponse } from "src/api/backend";
|
|
|
|
const fetchHealth = () => getHealth();
|
|
|
|
const useHealth = (options = {}) => {
|
|
return useQuery<HealthResponse, Error>({
|
|
queryKey: ["health"],
|
|
queryFn: fetchHealth,
|
|
refetchOnWindowFocus: false,
|
|
retry: 5,
|
|
refetchInterval: 15 * 1000, // 15 seconds
|
|
staleTime: 14 * 1000, // 14 seconds
|
|
...options,
|
|
});
|
|
};
|
|
|
|
export { fetchHealth, useHealth };
|