high.js
1.23 KB
import { Link } from "@nextui-org/react";
import { getPostsByDifficulty } from "../../api/post";
import { useState } from "react";
import { useEffect } from "react";
import { useRouter } from "next/router";
export default function Popular() {
const [posts, setPosts] = useState([]);
const router = useRouter();
useEffect(() => {
getPostsByDifficulty(3).then(setPosts);
}, []);
const DateType = (date) => {
const dateObj = new Date(date);
const month = dateObj.toLocaleString("default", { month: "long" });
const day = dateObj.getDate();
const year = dateObj.getFullYear();
return dateObj.toLocaleString();
}
return (
<div className="ml-10 mr-10">
<ul>
{posts.map(post => (
<li key={post.id}>
<a onClick={() => router.push(`/post/${post.id}`)} className="cursor-pointer transition
duration-100 transform hover:text-white text-2xl">
{post.title}
</a>
<span className="float-right">{DateType(post.createdAt)}</span>
</li>
))}
</ul>
</div>
);
}