87 lines
1.9 KiB
TypeScript
87 lines
1.9 KiB
TypeScript
const API_URL = "/api/v1"
|
|
|
|
export async function get<Res>(
|
|
url: string,
|
|
cache?: "no-store" | "force-cache",
|
|
revalidate?: number
|
|
): Promise<Res> {
|
|
const token = localStorage.getItem("ephemrToken")
|
|
|
|
return (
|
|
await fetch(API_URL + url, {
|
|
method: "GET",
|
|
//cache: cache ?? "no-store",
|
|
headers: {
|
|
Authorization: `Bearer ${token}`,
|
|
"Content-Type": "application/json",
|
|
},
|
|
next: { revalidate: revalidate ?? 0 },
|
|
})
|
|
).json() as Res
|
|
}
|
|
|
|
export async function post<Res>(
|
|
url: string,
|
|
body: any,
|
|
cache?: "no-store" | "force-cache",
|
|
revalidate?: number
|
|
): Promise<Res> {
|
|
const token = localStorage.getItem("ephemrToken")
|
|
|
|
return (
|
|
await fetch(API_URL + url, {
|
|
method: "POST",
|
|
//cache: cache ?? "no-store",
|
|
headers: {
|
|
Authorization: `Bearer ${token}`,
|
|
"Content-Type": "application/json",
|
|
},
|
|
body: JSON.stringify(body),
|
|
next: { revalidate: revalidate ?? 0 },
|
|
})
|
|
).json() as Res
|
|
}
|
|
|
|
export async function patch<Res>(
|
|
url: string,
|
|
body: any,
|
|
cache?: "no-store" | "force-cache",
|
|
revalidate?: number
|
|
): Promise<Res> {
|
|
const token = localStorage.getItem("ephemrToken")
|
|
|
|
return (
|
|
await fetch(API_URL + url, {
|
|
method: "PATCH",
|
|
//cache: cache ?? "no-store",
|
|
headers: {
|
|
Authorization: `Bearer ${token}`,
|
|
"Content-Type": "application/json",
|
|
},
|
|
body: JSON.stringify(body),
|
|
next: { revalidate: revalidate ?? 0 },
|
|
})
|
|
).json() as Res
|
|
}
|
|
|
|
export async function requestDelete<Res>(
|
|
url: string,
|
|
body: any,
|
|
cache?: "no-store" | "force-cache",
|
|
revalidate?: number
|
|
): Promise<Res> {
|
|
const token = localStorage.getItem("ephemrToken")
|
|
|
|
return (
|
|
await fetch(API_URL + url, {
|
|
method: "DELETE",
|
|
//cache: cache ?? "no-store",
|
|
headers: {
|
|
Authorization: `Bearer ${token}`,
|
|
"Content-Type": "application/json",
|
|
},
|
|
body: JSON.stringify(body),
|
|
next: { revalidate: revalidate ?? 0 },
|
|
})
|
|
).json() as Res
|
|
}
|