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