Files
nginx-proxy-manager/frontend/src/hooks/useDeadHosts.ts
2025-10-02 08:12:36 +10:00

18 lines
497 B
TypeScript

import { useQuery } from "@tanstack/react-query";
import { type DeadHost, getDeadHosts, type HostExpansion } from "src/api/backend";
const fetchDeadHosts = (expand?: HostExpansion[]) => {
return getDeadHosts(expand);
};
const useDeadHosts = (expand?: HostExpansion[], options = {}) => {
return useQuery<DeadHost[], Error>({
queryKey: ["dead-hosts", { expand }],
queryFn: () => fetchDeadHosts(expand),
staleTime: 60 * 1000,
...options,
});
};
export { fetchDeadHosts, useDeadHosts };