mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-11-04 17:35:15 +00:00
18 lines
497 B
TypeScript
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 };
|