deskripsi:
- bug donasi cerita penggalangan dana
- bug login
This commit is contained in:
2025-05-21 12:06:14 +08:00
parent 923552681f
commit 4b39ffd54c
7 changed files with 134 additions and 40 deletions

View File

@@ -57,3 +57,39 @@ export const apiGetOneDonasiById = async (path: string, kategori: string) => {
});
return await response.json().catch(() => null);
};
export const apiGetDonasiCeritaPenggalang = async ({ id }: { id: string }) => {
try {
console.log("id in Fetch>>", id);
// Fetch token from cookie
const { token } = await fetch("/api/get-cookie").then((res) => res.json());
if (!token) {
console.error("No token found");
return null;
}
const response = await fetch(`/api/donasi/${id}/cerita-penggalang`, {
method: "GET",
headers: {
"Content-Type": "application/json",
Accept: "application/json",
Authorization: `Bearer ${token}`,
},
});
if (!response.ok) {
const errorData = await response.json().catch(() => null);
console.error("Failed to get donasi cerita penggalang", response.statusText, errorData);
throw new Error(errorData?.message || "Failed to get donasi cerita penggalang");
}
// Return the JSON response
const data = await response.json();
console.log("data fetch>>", data);
return data;
} catch (error) {
console.error("Error get donasi cerita penggalang", error);
throw error; // Re-throw the error to handle it in the calling function
}
};