- refactor: replace Output component with OutputForms and update related hooks and types
This commit is contained in:
47
src/features/output/hooks/useDispatcherConfig.ts
Normal file
47
src/features/output/hooks/useDispatcherConfig.ts
Normal file
@@ -0,0 +1,47 @@
|
||||
import { useQuery, useMutation } from "@tanstack/react-query";
|
||||
import type { DispatcherConfig } from "../../../types/types";
|
||||
|
||||
const getDispatcherConfig = async () => {
|
||||
const response = await fetch(`http://192.168.202.121/api/fetch-config?id=Dispatcher0`);
|
||||
if (!response.ok) {
|
||||
throw new Error("Network response was not ok");
|
||||
}
|
||||
return response.json();
|
||||
};
|
||||
|
||||
const postDispatcherConfig = async (config: DispatcherConfig) => {
|
||||
const updateConfigPayload = {
|
||||
id: "Dispatcher0",
|
||||
fields: [
|
||||
{
|
||||
property: "propEnabled",
|
||||
value: config.enabled,
|
||||
},
|
||||
{
|
||||
property: "propFormat",
|
||||
value: config.format,
|
||||
},
|
||||
],
|
||||
};
|
||||
const response = await fetch(`http://192.168.202.121/api/update-config`, {
|
||||
method: "POST",
|
||||
body: JSON.stringify(updateConfigPayload),
|
||||
});
|
||||
if (!response.ok) {
|
||||
throw new Error("Network response was not ok");
|
||||
}
|
||||
return response.json();
|
||||
};
|
||||
|
||||
export const useDispatcherConfig = () => {
|
||||
const dispatcherQuery = useQuery({
|
||||
queryKey: ["dispatcherConfig"],
|
||||
queryFn: () => getDispatcherConfig(),
|
||||
});
|
||||
|
||||
const dispatcherMutation = useMutation({
|
||||
mutationKey: ["postDispatcherConfig"],
|
||||
mutationFn: (config: DispatcherConfig) => postDispatcherConfig(config),
|
||||
});
|
||||
return { dispatcherQuery, dispatcherMutation };
|
||||
};
|
||||
Reference in New Issue
Block a user