47 lines
1.2 KiB
TypeScript
47 lines
1.2 KiB
TypeScript
|
let url_Backend_dwinzo = `http://${process.env.REACT_APP_SERVER_REST_API_BASE_URL}`;
|
||
|
|
||
|
export const addCommentsApi = async (
|
||
|
projectId: any,
|
||
|
comment: string,
|
||
|
threadId?: string,
|
||
|
commentId?: string
|
||
|
) => {
|
||
|
console.log(
|
||
|
" projectId, comments, threadId: ",
|
||
|
projectId,
|
||
|
comment,
|
||
|
threadId,
|
||
|
commentId
|
||
|
);
|
||
|
try {
|
||
|
const response = await fetch(
|
||
|
`${url_Backend_dwinzo}/api/v1/Thread/addComment`,
|
||
|
{
|
||
|
method: "POST",
|
||
|
headers: {
|
||
|
Authorization: "Bearer <access_token>",
|
||
|
"Content-Type": "application/json",
|
||
|
token: localStorage.getItem("token") || "",
|
||
|
refresh_token: localStorage.getItem("refreshToken") || "",
|
||
|
},
|
||
|
body: JSON.stringify({ projectId, comment, threadId, commentId }),
|
||
|
}
|
||
|
);
|
||
|
console.log('response: ', response);
|
||
|
if (!response.ok) {
|
||
|
throw new Error("Failed to add project");
|
||
|
}
|
||
|
|
||
|
const result = await response.json();
|
||
|
console.log("result: ", result);
|
||
|
|
||
|
return result;
|
||
|
} catch (error) {
|
||
|
if (error instanceof Error) {
|
||
|
throw new Error(error.message);
|
||
|
} else {
|
||
|
throw new Error("An unknown error occurred");
|
||
|
}
|
||
|
}
|
||
|
};
|