You've already forked nginx-proxy-manager
mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-11-02 16:53:15 +03:00
React
This commit is contained in:
17
frontend/src/hooks/useRedirectionHosts.ts
Normal file
17
frontend/src/hooks/useRedirectionHosts.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
import { useQuery } from "@tanstack/react-query";
|
||||
import { getRedirectionHosts, type RedirectionHost, type RedirectionHostExpansion } from "src/api/backend";
|
||||
|
||||
const fetchRedirectionHosts = (expand?: RedirectionHostExpansion[]) => {
|
||||
return getRedirectionHosts(expand);
|
||||
};
|
||||
|
||||
const useRedirectionHosts = (expand?: RedirectionHostExpansion[], options = {}) => {
|
||||
return useQuery<RedirectionHost[], Error>({
|
||||
queryKey: ["redirection-hosts", { expand }],
|
||||
queryFn: () => fetchRedirectionHosts(expand),
|
||||
staleTime: 60 * 1000,
|
||||
...options,
|
||||
});
|
||||
};
|
||||
|
||||
export { fetchRedirectionHosts, useRedirectionHosts };
|
||||
Reference in New Issue
Block a user