posts page

This commit is contained in:
sameeranageshwar
2025-04-13 02:40:33 -04:00
parent 059ccb9781
commit d649d18420
2 changed files with 118 additions and 2 deletions

View File

@@ -20,10 +20,10 @@ const tableData = [
bonus: "0 pts after 400mg caffeine", bonus: "0 pts after 400mg caffeine",
}, },
{ {
drink: "Earl Grey Tea", drink: "Tea",
volume: "8", volume: "8",
caffeine: "55", caffeine: "55",
sugar: "0", sugar: "?",
points: "50", points: "50",
bonus: "0 pts after 400mg caffeine", bonus: "0 pts after 400mg caffeine",
}, },

View File

@@ -0,0 +1,116 @@
"use client";
import { useDevice } from "@/lib/context/DeviceContext";
import React, { useEffect, useState } from "react";
export default function PostsPage() {
const [postText, setPostText] = useState("");
const [posts, setPosts] = useState<any[]>([]); // type of post??
const { isAuthenticated, session } = useDevice();
useEffect(() => {
if (isAuthenticated && session?.username) {
fetch(`/api/user/${session.username}`)
.then((res) => res.json())
}
}, [isAuthenticated, session?.username]);
const handlePostSubmit = (e: React.FormEvent) => {
e.preventDefault();
const newPost = {
text: postText,
date: new Date().toLocaleString(),
likes: 0,
warnings: 0,
imageUrl: "", // placeholder for image logic
};
setPosts([newPost, ...posts]);
setPostText("");
};
const handleLike = (index: number) => {
const updatedPosts = [...posts];
updatedPosts[index].likes += 1;
setPosts(updatedPosts);
};
const handleWarning = (index: number) => {
const updatedPosts = [...posts];
updatedPosts[index].warnings += 1;
setPosts(updatedPosts);
};
return (
<div className="px-6 py-10 max-w-full lg:max-w-2xl mx-auto font-sans text-neutral-100">
<div className="bg-[color:var(--color-surface-700)]/70 backdrop-blur-md rounded-xl px-6 py-5 mb-8 shadow-sm">
<h1 className="text-3xl sm:text-4xl font-bold mb-0 text-[color:var(--color-warning-300)]">
Posts
</h1>
</div>
<div className="bg-[color:var(--color-surface-600)]/70 backdrop-blur-md rounded-xl px-6 py-5 mb-8 shadow-sm">
<form onSubmit={handlePostSubmit} className="space-y-3">
<textarea
className="w-full p-3 rounded bg-neutral-800 text-white"
placeholder="Share your beverage..."
value={postText}
onChange={(e) => setPostText(e.target.value)}
rows={4}
/>
<button
type="submit"
className="px-4 py-2 bg-success-600 text-white rounded font-semibold"
>
Post
</button>
</form>
</div>
<div className="space-y-6">
{posts.map((post, index) => (
<div
key={index}
className="bg-[color:var(--color-surface-600)]/80 rounded-xl px-6 py-5 shadow-md"
>
<div className="flex items-center gap-4 mb-2">
<div className="w-10 h-10 rounded-full bg-neutral-800 border border-gray-300" />
<div>
<p className="font-semibold text-[color:var(--color-warning-300)]">
[put username here - i tried] {/*isAuthenticated ? session.username : ""*/}
</p>
<p className="text-sm text-gray-400">{post.date}</p>
</div>
</div>
{post.imageUrl && (
<img
src={post.imageUrl} // placeholder logic - friend can wire this to Mongo
alt="Post related"
className="w-full max-h-64 object-cover rounded mb-4"
/>
)}
<p className="text-base text-neutral-100 mb-4">{post.text}</p>
<div className="flex gap-4 items-center">
<button
onClick={() => handleLike(index)}
className="px-3 py-1 rounded bg-success-600 text-white hover:bg-primary-600 text-sm"
>
👍 Like ({post.likes})
</button>
<button
onClick={() => handleWarning(index)}
className="px-3 py-1 rounded bg-primary-500 text-white hover:bg-red-600 text-sm"
>
😭 Stop drinking that ({post.warnings})
</button>
</div>
</div>
))}
</div>
<div className="h-10" />
</div>
);
}