27 lines
867 B
TypeScript
27 lines
867 B
TypeScript
let url_Backend_dwinzo = `http://${process.env.REACT_APP_SERVER_REST_API_BASE_URL}`;
|
|
// let url_Backend_dwinzo = `http://192.168.0.102:5000`;
|
|
export const getZone2dData = async (organization?: string, projectId?: string) => {
|
|
try {
|
|
const response = await fetch(
|
|
`${url_Backend_dwinzo}/api/V1/zones/visualization/${projectId}`,
|
|
{
|
|
method: "GET",
|
|
headers: {
|
|
Authorization: "Bearer <access_token>",
|
|
"Content-Type": "application/json",
|
|
token: localStorage.getItem("token") || "",
|
|
refresh_token: localStorage.getItem("refreshToken") || "",
|
|
},
|
|
}
|
|
);
|
|
if (!response.ok) {
|
|
throw new Error("Failed to fetch zoneDatas");
|
|
}
|
|
|
|
return await response.json();
|
|
} catch (error: any) {
|
|
echo.error("Failed to fetch 2d zone data");
|
|
throw new Error(error.message);
|
|
}
|
|
};
|