mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-11-04 17:35:15 +00:00
React
This commit is contained in:
17
frontend/src/hooks/useStreams.ts
Normal file
17
frontend/src/hooks/useStreams.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
import { useQuery } from "@tanstack/react-query";
|
||||
import { getStreams, type Stream, type StreamExpansion } from "src/api/backend";
|
||||
|
||||
const fetchStreams = (expand?: StreamExpansion[]) => {
|
||||
return getStreams(expand);
|
||||
};
|
||||
|
||||
const useStreams = (expand?: StreamExpansion[], options = {}) => {
|
||||
return useQuery<Stream[], Error>({
|
||||
queryKey: ["streams", { expand }],
|
||||
queryFn: () => fetchStreams(expand),
|
||||
staleTime: 60 * 1000,
|
||||
...options,
|
||||
});
|
||||
};
|
||||
|
||||
export { fetchStreams, useStreams };
|
||||
Reference in New Issue
Block a user