mirror of
https://github.com/Ategon/Jamjar.git
synced 2025-02-12 06:16:21 +00:00
39 lines
1.1 KiB
TypeScript
39 lines
1.1 KiB
TypeScript
import { getCookie, hasCookie } from "@/helpers/cookie";
|
|
import { BASE_URL } from "./config";
|
|
|
|
export async function getSelf() {
|
|
return fetch(`${BASE_URL}/self?username=${getCookie("user")}`, {
|
|
headers: { authorization: `Bearer ${getCookie("token")}` },
|
|
credentials: "include",
|
|
});
|
|
}
|
|
|
|
export async function getUser(userSlug: string) {
|
|
return fetch(`${BASE_URL}/user?slug=${userSlug}`);
|
|
}
|
|
|
|
export async function searchUsers(query: string) {
|
|
return fetch(`${BASE_URL}/user/search?q=${query}`, {
|
|
headers: { authorization: `Bearer ${getCookie("token")}` },
|
|
credentials: "include",
|
|
});
|
|
}
|
|
|
|
export async function updateUser(userSlug: string, name: string, bio: string, profilePicture: string, bannerPicture: string) {
|
|
return fetch(`${BASE_URL}/user`, {
|
|
body: JSON.stringify({
|
|
slug: userSlug,
|
|
name,
|
|
bio,
|
|
profilePicture: profilePicture,
|
|
bannerPicture: bannerPicture,
|
|
}),
|
|
method: "PUT",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
authorization: `Bearer ${getCookie("token")}`,
|
|
},
|
|
}
|
|
);
|
|
}
|
|
|