mirror of
https://github.com/Ategon/Jamjar.git
synced 2025-02-12 06:16:21 +00:00
Clean user backend
This commit is contained in:
parent
d9477e9eaf
commit
c6ee544528
5 changed files with 11 additions and 9 deletions
|
@ -42,8 +42,8 @@ export default function UserPage() {
|
|||
|
||||
const response = await fetch(
|
||||
process.env.NEXT_PUBLIC_MODE === "PROD"
|
||||
? "https://d2jam.com/api/v1/login"
|
||||
: "http://localhost:3005/api/v1/login",
|
||||
? "https://d2jam.com/api/v1/session"
|
||||
: "http://localhost:3005/api/v1/session",
|
||||
{
|
||||
body: JSON.stringify({ username: username, password: password }),
|
||||
method: "POST",
|
||||
|
|
|
@ -9,9 +9,9 @@ export default function UserPage() {
|
|||
async function logout() {
|
||||
const response = await fetch(
|
||||
process.env.NEXT_PUBLIC_MODE === "PROD"
|
||||
? "https://d2jam.com/api/v1/logout"
|
||||
: "http://localhost:3005/api/v1/logout",
|
||||
{ method: "POST", credentials: "include" }
|
||||
? "https://d2jam.com/api/v1/session"
|
||||
: "http://localhost:3005/api/v1/session",
|
||||
{ method: "DELETE", credentials: "include" }
|
||||
);
|
||||
|
||||
if (response.ok) {
|
||||
|
|
|
@ -91,12 +91,14 @@ export default function UserPage() {
|
|||
bio: sanitizedBio,
|
||||
profilePicture: profilePicture,
|
||||
bannerPicture: bannerPicture,
|
||||
targetUserSlug: user.slug,
|
||||
}),
|
||||
method: "PUT",
|
||||
headers: {
|
||||
"Content-Type": "application/json",
|
||||
authorization: `Bearer ${getCookie("token")}`,
|
||||
},
|
||||
credentials: "include",
|
||||
}
|
||||
);
|
||||
|
||||
|
|
|
@ -68,8 +68,8 @@ export default function UserPage() {
|
|||
|
||||
const response = await fetch(
|
||||
process.env.NEXT_PUBLIC_MODE === "PROD"
|
||||
? "https://d2jam.com/api/v1/signup"
|
||||
: "http://localhost:3005/api/v1/signup",
|
||||
? "https://d2jam.com/api/v1/user"
|
||||
: "http://localhost:3005/api/v1/user",
|
||||
{
|
||||
body: JSON.stringify({ username: username, password: password }),
|
||||
method: "POST",
|
||||
|
|
|
@ -14,8 +14,8 @@ export default function UserPage() {
|
|||
const fetchUser = async () => {
|
||||
const response = await fetch(
|
||||
process.env.NEXT_PUBLIC_MODE === "PROD"
|
||||
? `https://d2jam.com/api/v1/user?slug=${slug}`
|
||||
: `http://localhost:3005/api/v1/user?slug=${slug}`
|
||||
? `https://d2jam.com/api/v1/user?targetUserSlug=${slug}`
|
||||
: `http://localhost:3005/api/v1/user?targetUserSlug=${slug}`
|
||||
);
|
||||
setUser(await response.json());
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue