deskripsi:
- fix server action to API notification to admin
- fix api created job
This commit is contained in:
2025-03-27 15:37:44 +08:00
parent d4049a9fca
commit c94ecd8f9c
20 changed files with 482 additions and 58 deletions

View File

@@ -1,4 +1,4 @@
export { apiGetPdfToImage };
export { apiGetPdfToImage, apiCreatedNotificationToAdmin, apiGetSeasonUserId };
export interface PageData {
imageUrl: string;
@@ -35,10 +35,7 @@ const apiGetPdfToImage = async ({ id }: { id: string }) => {
// Check if the response is OK
if (!response.ok) {
const errorData = await response.json().catch(() => null);
console.error(
"Failed get file",
errorData?.message || "Unknown error"
);
console.error("Failed get file", errorData?.message || "Unknown error");
return null;
}
@@ -50,3 +47,68 @@ const apiGetPdfToImage = async ({ id }: { id: string }) => {
throw error; // Re-throw the error to handle it in the calling function
}
};
const apiCreatedNotificationToAdmin = async ({ data }: { data: any }) => {
try {
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/notifications/to-admin`, {
method: "POST",
body: JSON.stringify({ data }),
headers: {
"Content-Type": "application/json",
Accept: "application/json",
Authorization: `Bearer ${token}`,
},
});
// Check if the response is OK
if (!response.ok) {
const errorData = await response.json().catch(() => null);
console.error(
"Failed to created notifications",
response.statusText,
errorData
);
throw new Error(errorData?.message || "Failed to created notifications");
}
// Return the JSON response
return await response.json();
} catch (error) {
console.error("Error to created notifications", error);
throw error; // Re-throw the error to handle it in the calling function
}
};
const apiGetSeasonUserId = async () => {
try {
const response = await fetch(`/api/season`, {
method: "GET",
headers: {
"Content-Type": "application/json",
Accept: "application/json",
},
});
// Check if the response is OK
if (!response.ok) {
const errorData = await response.json().catch(() => null);
console.error(
"Failed to created notifications",
response.statusText,
errorData
);
throw new Error(errorData?.message || "Failed to created notifications");
}
return await response.json();
} catch (error) {
console.error("Error get user id", error);
throw error; // Re-throw the error to handle it in the calling function
}
};