Files
nginx-proxy-manager/frontend/src/hooks/useProxyHosts.ts
Jamie Curnow ebd9148813 React
2025-09-03 14:02:14 +10:00

18 lines
522 B
TypeScript

import { useQuery } from "@tanstack/react-query";
import { getProxyHosts, type ProxyHost, type ProxyHostExpansion } from "src/api/backend";
const fetchProxyHosts = (expand?: ProxyHostExpansion[]) => {
return getProxyHosts(expand);
};
const useProxyHosts = (expand?: ProxyHostExpansion[], options = {}) => {
return useQuery<ProxyHost[], Error>({
queryKey: ["proxy-hosts", { expand }],
queryFn: () => fetchProxyHosts(expand),
staleTime: 60 * 1000,
...options,
});
};
export { fetchProxyHosts, useProxyHosts };