- refactor: replace Output component with OutputForms and update related hooks and types
This commit is contained in:
65
src/features/output/hooks/useBearer.ts
Normal file
65
src/features/output/hooks/useBearer.ts
Normal file
@@ -0,0 +1,65 @@
|
||||
import { useMutation, useQuery } from "@tanstack/react-query";
|
||||
import type { BearerTypeFields } from "../../../types/types";
|
||||
|
||||
const fetchBearerConfig = async (bearerConfig: string) => {
|
||||
const response = await fetch(`http://100.115.148.59/api/fetch-config?id=Dispatcher0-${bearerConfig}`, {
|
||||
method: "GET",
|
||||
});
|
||||
if (!response.ok) {
|
||||
throw new Error("Network response was not ok");
|
||||
}
|
||||
return response.json();
|
||||
};
|
||||
|
||||
const postBearerConfig = async (config: BearerTypeFields) => {
|
||||
const channelConfigPayload = {
|
||||
id: `Dispatcher0-${config.format.toLowerCase()}`,
|
||||
fields: [
|
||||
{
|
||||
property: "propBackofficeURL",
|
||||
value: config.backOfficeURL,
|
||||
},
|
||||
{
|
||||
property: "propConnectTimeoutSeconds",
|
||||
value: config.connectTimeoutSeconds,
|
||||
},
|
||||
{
|
||||
property: "propPassword",
|
||||
value: config.password,
|
||||
},
|
||||
{
|
||||
property: "propReadTimeoutSeconds",
|
||||
value: config.readTimeoutSeconds,
|
||||
},
|
||||
{
|
||||
property: "propUsername",
|
||||
value: config.username,
|
||||
},
|
||||
],
|
||||
};
|
||||
const response = await fetch("http://192.168.202.121/api/update-config", {
|
||||
method: "POST",
|
||||
body: JSON.stringify(channelConfigPayload),
|
||||
});
|
||||
if (!response.ok) {
|
||||
throw new Error("Network response was not ok");
|
||||
}
|
||||
return response.json();
|
||||
};
|
||||
|
||||
export const usePostBearerConfig = () => {
|
||||
const bearerMutation = useMutation({
|
||||
mutationFn: (query: BearerTypeFields) => postBearerConfig(query),
|
||||
mutationKey: ["outputs"],
|
||||
});
|
||||
return { bearerMutation };
|
||||
};
|
||||
|
||||
export const useGetBearerConfig = (bearerConfig: string) => {
|
||||
const bearerQuery = useQuery({
|
||||
queryKey: ["outputs", bearerConfig],
|
||||
queryFn: () => fetchBearerConfig(bearerConfig),
|
||||
});
|
||||
|
||||
return { bearerQuery };
|
||||
};
|
||||
Reference in New Issue
Block a user