60 lines
2.0 KiB
TypeScript
60 lines
2.0 KiB
TypeScript
export const apiGetAllDonasi = async (path?: string) => {
|
|
const { token } = await fetch("/api/get-cookie").then((res) => res.json());
|
|
if (!token) return await token.json().catch(() => null);
|
|
|
|
const response = await fetch(`/api/new/donasi${path ? path : ""}`, {
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
Accept: "application/json",
|
|
"Access-Control-Allow-Origin": "*",
|
|
Authorization: `Bearer ${token}`,
|
|
},
|
|
});
|
|
return await response.json().catch(() => null);
|
|
};
|
|
|
|
export const apiGetMasterDonasi = async (path?: string) => {
|
|
const { token } = await fetch("/api/get-cookie").then((res) => res.json());
|
|
if (!token) return await token.json().catch(() => null);
|
|
|
|
const response = await fetch(`/api/new/donasi/master${path ? path : ""}`, {
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
Accept: "application/json",
|
|
"Access-Control-Allow-Origin": "*",
|
|
Authorization: `Bearer ${token}`,
|
|
},
|
|
});
|
|
return await response.json().catch(() => null);
|
|
};
|
|
|
|
export const apiGetAllDonasiSaya = async (path?: string) => {
|
|
const { token } = await fetch("/api/get-cookie").then((res) => res.json());
|
|
if (!token) return await token.json().catch(() => null);
|
|
|
|
const response = await fetch(`/api/new/donasi/invoice${path ? path : ""}`, {
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
Accept: "application/json",
|
|
"Access-Control-Allow-Origin": "*",
|
|
Authorization: `Bearer ${token}`,
|
|
},
|
|
});
|
|
return await response.json().catch(() => null);
|
|
};
|
|
|
|
export const apiGetOneDonasiById = async (path: string, kategori: string) => {
|
|
const { token } = await fetch("/api/get-cookie").then((res) => res.json());
|
|
if (!token) return await token.json().catch(() => null);
|
|
|
|
const response = await fetch(`/api/new/donasi/${path}?cat=${kategori}`, {
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
Accept: "application/json",
|
|
"Access-Control-Allow-Origin": "*",
|
|
Authorization: `Bearer ${token}`,
|
|
},
|
|
});
|
|
return await response.json().catch(() => null);
|
|
};
|