web-kabar-harapan/components/landing-page/latest-news.tsx

158 lines
5.0 KiB
TypeScript

"use client";
import { useState, useEffect } from "react";
import Image from "next/image";
import { getListArticle } from "@/service/article";
type Article = {
id: number;
title: string;
description: string;
categoryName: string;
createdAt: string;
createdByName: string;
thumbnailUrl: string;
categories: { title: string }[];
files: { fileUrl: string; file_alt: string }[];
};
export default function LatestNews() {
const [articles, setArticles] = useState<Article[]>([]);
const [showData, setShowData] = useState("5");
useEffect(() => {
fetchArticles();
}, []);
async function fetchArticles() {
try {
const req = {
limit: showData,
page: 1,
search: "",
categorySlug: "",
sort: "desc",
isPublish: true,
sortBy: "created_at",
};
const res = await getListArticle(req);
setArticles(res?.data?.data || []);
} catch (error) {
console.error("Gagal memuat artikel:", error);
}
}
const mainArticle = articles[0];
const secondArticle = articles[1];
return (
<div className="max-w-7xl mx-auto px-4 py-10 grid grid-cols-1 lg:grid-cols-3 gap-6">
{/* KIRI: Artikel utama dan kedua */}
<div className="lg:col-span-2">
<h1 className="text-3xl font-bold mb-2">Berita Terkini</h1>
<p className="text-gray-600 mb-6">
Kolom ini berisi berita-berita yang saat ini sedang menjadi sorotan
atau terkait dengan peristiwa terbaru.
</p>
{mainArticle && (
<div className="grid grid-cols-1 md:grid-cols-2 gap-4 mb-6">
{/* Gambar */}
<div className="relative h-64 w-full">
<Image
src={mainArticle.thumbnailUrl}
alt={mainArticle.title}
fill
className="object-cover rounded"
/>
</div>
{/* Konten */}
<div className="flex flex-col justify-center">
<span className="bg-yellow-500 text-white px-2 py-1 text-xs font-semibold w-fit mb-2">
BERITA TERKINI
</span>
<h2 className="text-xl font-bold text-orange-600 mb-2">
{mainArticle.title}
</h2>
<p className="text-xs text-gray-500 mb-2">
by {mainArticle.createdByName} {" "}
{formatDate(mainArticle.createdAt)} 💬 0
</p>
<p className="text-sm text-gray-700 mb-3 line-clamp-3">
{mainArticle.description}
</p>
<button className="bg-black text-white text-xs px-4 py-2 w-fit hover:bg-gray-800">
READ MORE
</button>
</div>
</div>
)}
{/* Artikel Kedua */}
{secondArticle && (
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
{/* Gambar */}
<div className="relative h-48 w-full">
<Image
src={secondArticle.thumbnailUrl}
alt={secondArticle.title}
fill
className="object-cover rounded"
/>
</div>
{/* Konten */}
<div className="flex flex-col justify-center">
<span className="bg-yellow-500 text-white px-2 py-1 text-xs font-semibold w-fit mb-2">
BERITA TERKINI
</span>
<h2 className="text-xl font-bold text-gray-800 mb-2">
{secondArticle.title}
</h2>
<p className="text-xs text-gray-500 mb-2">
by {secondArticle.createdByName} {" "}
{formatDate(secondArticle.createdAt)} 💬 0
</p>
<p className="text-sm text-gray-700 mb-3 line-clamp-3">
{secondArticle.description}
</p>
<button className="bg-black text-white text-xs px-4 py-2 w-fit hover:bg-gray-800">
READ MORE
</button>
</div>
</div>
)}
</div>
{/* KANAN: Advertisement */}
<div className="w-full">
<div className="border p-4 bg-white flex flex-col items-center">
<p className="text-center text-sm text-gray-600 mb-2">
Smart & Responsive
</p>
<h3 className="text-center text-md font-bold mb-4">ADVERTISEMENT</h3>
<div className="relative w-full h-[300px] bg-gray-100">
<Image
src="/adversment.png"
alt="Advertisement"
fill
className="object-contain"
/>
</div>
<button className="mt-4 text-xs bg-black text-white px-4 py-2 hover:bg-gray-800">
LEARN MORE
</button>
</div>
</div>
</div>
);
}
function formatDate(dateStr: string): string {
const options: Intl.DateTimeFormatOptions = {
year: "numeric",
month: "long",
day: "numeric",
};
return new Date(dateStr).toLocaleDateString("id-ID", options);
}