"use client"; import { useEffect, useState } from "react"; import PostCard from "./PostCard"; import { PostType } from "@/types/PostType"; import { Button, Dropdown, DropdownItem, DropdownMenu, DropdownTrigger, } from "@nextui-org/react"; import { PostSort } from "@/types/PostSort"; export default function Posts() { const [posts, setPosts] = useState(); const [sort, setSort] = useState("newest"); useEffect(() => { const fetchPosts = async () => { const response = await fetch( process.env.NEXT_PUBLIC_MODE === "PROD" ? `https://d2jam.com/api/v1/posts?sort=${sort}` : `http://localhost:3005/api/v1/posts?sort=${sort}` ); setPosts(await response.json()); }; fetchPosts(); }, [sort]); return (
{ setSort(key as PostSort); }} className="text-black" > Newest Top Oldest
{posts && posts.map((post) => (
))}
); return
; }