mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-09-17 04:10:35 +00:00
React
This commit is contained in:
17
frontend/src/hooks/useProxyHosts.ts
Normal file
17
frontend/src/hooks/useProxyHosts.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
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 };
|
Reference in New Issue
Block a user