added focus and added asset toggles in asset properties

This commit is contained in:
2025-10-06 18:03:00 +05:30
parent 72f2b0f4bc
commit 08fb86d5ed
20 changed files with 761 additions and 96 deletions

View File

@@ -0,0 +1,29 @@
let url_Backend_dwinzo = `http://${process.env.REACT_APP_SERVER_REST_API_BASE_URL}`;
export const getAssetGroupApi = async (projectId: string, versionId: string) => {
try {
const response = await fetch(`${url_Backend_dwinzo}/api/V1/assetgroup/${projectId}/${versionId}`, {
method: "GET",
headers: {
Authorization: "Bearer <access_token>",
"Content-Type": "application/json",
token: localStorage.getItem("token") || "",
refresh_token: localStorage.getItem("refreshToken") || "",
},
});
const newAccessToken = response.headers.get("x-access-token");
if (newAccessToken) {
localStorage.setItem("token", newAccessToken);
}
if (!response.ok) {
echo.error("Failed to get asset group");
}
const result = await response.json();
return result;
} catch {
echo.error("Failed to get asset group");
}
};