Files
Bitcamp-2025/src/app/(app)/profile/page.tsx
2025-04-13 09:37:56 -04:00

431 lines
12 KiB
TypeScript

"use client";
import { useEffect, useState } from "react";
import { useDevice } from "@/lib/context/DeviceContext";
import FriendRequest from "./FriendRequest";
import Friend from "./Friend";
function Mobile() {
const { isAuthenticated, session } = useDevice();
const [bio, setBio] = useState(session?.bio || "");
const [username, setUsername] = useState(session?.username || "");
const [points, setPoints] = useState(session?.points || 0);
const [friends, setFriends] = useState(session?.friends || []);
const [requests, setRequests] = useState(session?.requests || []);
const [friendCode, setFriendCode] = useState(""); // Input for sending friend requests
const [leaderboard, setLeaderboard] = useState<any[]>([]); // Leaderboard data
useEffect(() => {
if (isAuthenticated && session) {
setBio(session.bio || "");
setUsername(session.username || "");
setPoints(session.points || 0);
setFriends(session.friends || []);
setRequests(session.requests || []);
// Fetch leaderboard data
const fetchLeaderboard = async () => {
try {
const friendsData = await Promise.all(
(session.friends || []).map((friendId: string) =>
fetch(`/api/user/${friendId}`)
.then((res) => {
if (!res.ok) {
throw new Error(`Failed to fetch data for friend ${friendId}`);
}
return res.json();
})
.then((data) => {
if (data.user) {
return {
id: data.user.id,
username: data.user.username || "Unknown User",
points: data.user.points || 0,
};
} else {
console.error(`No user found for friend ID: ${friendId}`);
return null;
}
})
.catch((err) => {
console.error(`Error fetching data for friend ${friendId}:`, err);
return null;
})
)
);
// Include the current user in the leaderboard
const userData = {
id: session.id,
username: session.username || "You",
points: session.points || 0,
};
// Combine and sort by points in descending order
const sortedLeaderboard = [userData, ...friendsData.filter(Boolean)].sort(
(a, b) => b.points - a.points
);
setLeaderboard(sortedLeaderboard);
} catch (error) {
console.error("Error fetching leaderboard data:", error);
}
};
fetchLeaderboard();
}
}, [isAuthenticated, session]);
function handleSubmit(e: React.FormEvent) {
e.preventDefault();
if (bio.length > 0 || username.length > 0) {
const formData = new FormData();
if (bio.length > 0) formData.append("bio", bio);
if (username.length > 0) formData.append("username", username);
fetch("/api/me", {
method: "POST",
body: formData,
})
.then((res) => res.json())
.then((data) => {
if (data.message === "User updated successfully") {
alert("Profile updated successfully!");
setPoints(data.updatedPoints || points);
} else {
alert("Failed to update profile.");
}
})
.catch((err) => {
console.error("Error updating profile:", err);
alert("An error occurred while updating your profile.");
});
} else {
alert("Please enter a bio or username.");
}
}
function handleSendFriendRequest(e: React.FormEvent) {
e.preventDefault();
if (friendCode.length !== 5) {
alert("Friend code must be exactly 5 characters.");
return;
}
const formData = new FormData();
formData.append("friendCode", session?.id);
fetch(`/api/user/${friendCode}`, {
method: "POST",
body: formData,
})
.then((res) => res.json())
.then((data) => {
if (data.message === "Friend request sent successfully") {
alert("Friend request sent!");
setFriendCode(""); // Clear the input field
} else {
alert(data.message || "Failed to send friend request.");
}
})
.catch((err) => {
console.error("Error sending friend request:", err);
alert("An error occurred while sending the friend request.");
});
}
function handleAcceptRequest(request: string) {
// Remove the request from the requests array and update the state
setRequests((prev: any) => prev.filter((req: string) => req !== request));
// Add the request to the friends array and update the state
setFriends((prev: any) => [...prev, request]);
// update the user's friends in the database
const formData = new FormData();
formData.append("friend", request);
fetch(`/api/me`, {
method: "POST",
body: formData,
})
.then((res) => res.json())
.then((data) => {
if (data.message === "Friend request accepted successfully") {
alert("Friend request accepted!");
}
})
.catch((err) => {
console.error("Error accepting friend request:", err);
alert("An error occurred while accepting the friend request.");
});
alert(`Accepted friend request from ${request}`);
}
function handleDenyRequest(request: string) {
// Remove the request from the requests array and update the state
setRequests((prev: any) => prev.filter((req: string) => req !== request));
// update the user's requests in the database
const formData = new FormData();
formData.append(
"requests",
JSON.stringify(requests.filter((req: string) => req !== request))
);
fetch(`/api/me`, {
method: "POST",
body: formData,
})
.then((res) => res.json())
.then((data) => {
if (data.message === "Friend request denied successfully") {
alert("Friend request denied!");
}
})
.catch((err) => {
console.error("Error denying friend request:", err);
alert("An error occurred while denying the friend request.");
});
alert(`Denied friend request from ${request}`);
}
function handleRemoveFriend(friendCode: string) {
// Remove the friend from the friends array and update the state
setFriends((prev: string[]) =>
prev.filter((friend) => friend !== friendCode)
);
const formData = new FormData();
formData.append(
"friends",
JSON.stringify(friends.filter((friend: string) => friend !== friendCode))
);
// Update the user's friends in the database
fetch(`/api/me`, {
method: "POST",
body: formData,
})
.then((res) => {
if (res.ok) {
alert("Friend removed successfully!");
} else {
alert("Failed to remove friend.");
}
})
.catch((err) => {
console.error("Error removing friend:", err);
alert("An error occurred while removing the friend.");
});
}
return (
<div className="px-6 py-10 my-10 max-w-full lg:max-w-1/2 mx-auto font-sans text-neutral-100">
<div className="bg-[color:var(--color-surface-800)]/70 backdrop-blur-md rounded-xl px-6 py-5 my-6 shadow-sm">
<h1 className="text-2xl sm:text-3xl font-bold tracking-[-.01em] text-center">
Hi, {username || ""}!!
</h1>
<div className="flex flex-col items-center mt-6 my-4">
{isAuthenticated && (
<img
src={"/avatar/p" + session?.avatar + ".png"}
alt="Profile Preview"
className="w-42 h-42 rounded-full object-cover bg-surface-700"
/>
)}
</div>
<form onSubmit={handleSubmit} className="mb-6 space-y-4">
{/* Username Input */}
<input
type="text"
className="w-full p-2 rounded bg-neutral-800 text-white"
onChange={(e) => setUsername(e.target.value)}
value={username || ""}
placeholder="Update your username..."
/>
{/* Bio Input */}
<textarea
className="w-full p-2 rounded bg-neutral-800 text-white"
onChange={(e) => setBio(e.target.value)}
value={bio || ""}
placeholder="Update your bio..."
rows={3}
/>
{/* Submit Button */}
<button
type="submit"
className="w-full px-4 py-2 bg-success-600 text-white rounded"
>
Save Profile
</button>
</form>
</div>
{/* Points and Cosmetics Owned */}
<div className="bg-[color:var(--color-surface-800)] rounded-xl px-6 py-5 my-6 shadow-md">
<h2 className="text-3xl font-bold tracking-[-.01em] text-[color:var(--color-warning-300)] mb-4">
Points & Cosmetics
</h2>
{/* Total Points */}
<div className="mb-4">
<p className="text-lg text-neutral-100">
<strong>Total Points:</strong> {points}
</p>
</div>
{/* Cosmetics Owned */}
<div>
<p className="text-lg text-neutral-100">
<strong>Cosmetics Owned:</strong> {session?.inventory?.length || 0}
</p>
</div>
</div>
{/* Leaderboard Card */}
<div className="bg-[color:var(--color-surface-800)] rounded-xl px-6 py-5 my-6 shadow-md">
<h2 className="text-3xl font-bold tracking-[-.01em] text-[color:var(--color-warning-300)] mb-4">
Leaderboard
</h2>
<div className="space-y-4">
{leaderboard.map((entry, index) => (
<div
key={entry.id}
className={`flex justify-between items-center p-3 rounded ${
entry.id === session.id
? "bg-[color:var(--color-success-600)]"
: "bg-[color:var(--color-surface-700)]"
}`}
>
<span className="font-semibold text-white">
{index + 1}. {entry.username}
</span>
<span className="text-[color:var(--color-warning-300)] font-bold">
{entry.points} pts
</span>
</div>
))}
</div>
</div>
{/* Friends, Friend Requests, and Send Friend Request Section */}
<div className="bg-[color:var(--color-surface-800)] rounded-xl px-6 py-5 my-6 shadow-md">
<h2 className="text-3xl font-bold tracking-[-.01em] text-[color:var(--color-warning-300)] mb-4">
Friends & Requests
</h2>
{/* Friend Code */}
<div className="mb-4">
<p className="text-lg text-neutral-100">
<strong>Friend Code:</strong> <code>{session?.id}</code>
</p>
</div>
{/* Friends List */}
<div className="mb-6">
<h3 className="text-2xl font-semibold text-[color:var(--color-warning-200)] mb-2">
Friends
</h3>
<ul className="list-none space-y-4">
{friends.length > 0 ? (
friends.map((friendCode: string, index: number) => (
<Friend
key={index}
friendCode={friendCode}
onRemove={handleRemoveFriend}
/>
))
) : (
<p className="text-neutral-400">No friends yet.</p>
)}
</ul>
</div>
{/* Friend Requests */}
<div className="mb-6">
<h3 className="text-2xl font-semibold text-[color:var(--color-warning-200)] mb-2">
Friend Requests
</h3>
<ul className="list-none space-y-4">
{requests.length > 0 ? (
requests.map((request: string, index: number) => (
<FriendRequest
key={index}
request={request}
onAccept={handleAcceptRequest}
onDeny={handleDenyRequest}
/>
))
) : (
<p className="text-neutral-400">No friend requests yet.</p>
)}
</ul>
</div>
{/* Send Friend Request */}
<div>
<h3 className="text-2xl font-semibold text-[color:var(--color-warning-200)] mb-2">
Send Friend Request
</h3>
<form onSubmit={handleSendFriendRequest} className="space-y-4">
<input
type="text"
className="w-full p-2 rounded bg-neutral-800 text-white"
onChange={(e) => setFriendCode(e.target.value)}
value={friendCode}
placeholder="Enter friend's code..."
/>
<button
type="submit"
className="w-full px-4 py-2 bg-success-600 text-white rounded"
>
Send Request
</button>
</form>
</div>
</div>
<button type="button" className="btn bg-surface-800 w-full">
<a href="/auth/logout">Logout</a>
</button>
</div>
);
}
function Web() {
const { isAuthenticated, session } = useDevice();
return (
<main className="flex flex-col gap-[32px] my-20 row-start-2 items-center mt-10 text-white">
<img
src="/drinkhappylogo.png"
alt="Drink Happy Logo Image"
className="h-auto mx-auto my-auto w-3/4 lg:w-1/3"
/>
<h1 className="text-3xl sm:text-4xl font-bold tracking-[-.01em] text-center sm:text-left">
{isAuthenticated ? `Welcome, ${session.username} !!` : ""}
</h1>
{!isAuthenticated ? (
<div className="flex gap-4">
<button type="button" className="btn bg-surface-500">
<a href="/auth/login?screen_hint=signup">Sign up</a>
</button>
<button type="button" className="btn bg-surface-500">
<a href="/auth/login?screen_hint=login">Log in</a>
</button>
</div>
) : null}
</main>
);
}
export default function ProfilePage() {
const { isMobile, isSafari } = useDevice();
if (isMobile && isSafari) return Mobile();
else return Mobile();
}