web-humas-fe/components/landing/HeaderNews.tsx

407 lines
15 KiB
TypeScript
Raw Normal View History

2024-11-05 06:15:40 +00:00
"use client";
2025-01-17 02:57:45 +00:00
import {
Button,
Card,
CardFooter,
CircularProgress,
2025-05-19 07:42:15 +00:00
Image,
2025-01-17 02:57:45 +00:00
ScrollShadow,
2025-02-13 08:25:39 +00:00
} from "@heroui/react";
2025-01-17 02:57:45 +00:00
import { ChevronLeftIcon, ChevronRightIcon, EyeIcon } from "../icons";
import { Swiper, SwiperSlide, useSwiper } from "swiper/react";
2024-11-05 06:15:40 +00:00
import "swiper/css";
2025-01-14 15:30:13 +00:00
import "swiper/css/navigation";
2025-01-17 02:57:45 +00:00
import { Autoplay, Pagination, Navigation, Controller } from "swiper/modules";
2024-11-05 06:15:40 +00:00
import Link from "next/link";
import GPRKominfo from "../ui/social-media/gpr-kominfo";
import { useEffect, useState } from "react";
2025-05-04 07:14:12 +00:00
import { getListArticle } from "@/services/article";
2025-01-14 15:30:13 +00:00
import { convertDateFormat, textEllipsis } from "@/utils/global";
2024-12-12 09:48:17 +00:00
import { useTranslations } from "next-intl";
import { data } from "autoprefixer";
2025-01-17 02:57:45 +00:00
import { Controller as FormController } from "react-hook-form";
import { Nabla } from "next/font/google";
2024-11-05 06:15:40 +00:00
export default function HeaderNews() {
const [article, setArticle] = useState<any>([]);
2025-04-23 07:13:14 +00:00
// const t = useTranslations("Landing");
2025-02-10 09:16:52 +00:00
const [selectedTab, setSelectedTab] = useState("media");
2025-02-17 10:01:58 +00:00
const [hotNews, setHotNews] = useState<any>([]);
const [banner, setBanner] = useState<any>([]);
2025-02-17 10:01:58 +00:00
// useEffect(() => {
// }, []);
2024-11-05 06:15:40 +00:00
useEffect(() => {
getArticle();
getBanner();
2025-02-17 10:01:58 +00:00
getHotNews();
2024-11-05 06:15:40 +00:00
}, []);
2025-02-17 10:01:58 +00:00
async function getArticle() {
2025-02-17 16:32:20 +00:00
const req = {
page: 1,
search: "",
limit: "10",
sort: "desc",
2025-03-17 15:45:12 +00:00
isPublish: true,
2025-02-17 16:32:20 +00:00
};
2025-02-17 10:01:58 +00:00
const response = await getListArticle(req);
setArticle(response?.data?.data);
}
async function getBanner() {
const req = {
page: 1,
search: "",
limit: "10",
sort: "desc",
isPublish: true,
isBanner: true,
};
const response = await getListArticle(req);
setBanner(response?.data?.data);
}
2025-02-17 10:01:58 +00:00
async function getHotNews() {
const req = {
page: 1,
search: "",
limit: "10",
sort: "desc",
2025-05-26 07:28:54 +00:00
categoryIds: "791802",
2025-02-24 12:24:58 +00:00
isPublish: true,
2025-02-17 10:01:58 +00:00
};
const response = await getListArticle(req);
setHotNews(response?.data?.data);
}
2024-11-05 06:15:40 +00:00
return (
2025-02-24 12:24:58 +00:00
<div className="w-full">
2025-03-26 08:27:09 +00:00
<div className="flex flex-col lg:flex-row gap-3 lg:gap-8 bg-white dark:bg-black p-1 lg:p-8 lg:h-[540px] w-full lg:w-[75%] lg:mx-auto">
2025-03-11 10:19:37 +00:00
<div className="lg:hidden w-[90%] h-[300px] md:h-[500px] mx-auto">
2025-05-26 06:07:26 +00:00
{hotNews ? (
2025-02-24 12:24:58 +00:00
<Swiper
centeredSlides={true}
autoplay={{
delay: 5000,
disableOnInteraction: false,
}}
navigation={true}
className="mySwiper"
modules={[Autoplay, Controller, Navigation]}
onSwiper={(swiper) => {
swiper.navigation.nextEl?.classList.add(
"bg-white/70",
"!text-black",
"rounded-full",
2025-03-11 10:19:37 +00:00
"!w-[32px]",
"!h-[32px]"
2025-02-24 12:24:58 +00:00
);
swiper.navigation.prevEl?.classList.add(
"bg-white/70",
"!text-black",
"rounded-full",
2025-03-11 10:19:37 +00:00
"!w-[32px]",
"!h-[32px]"
2025-02-24 12:24:58 +00:00
);
}}
>
2025-05-26 06:07:26 +00:00
{hotNews?.map((newsItem: any, index: number) => (
2025-02-24 12:24:58 +00:00
<SwiperSlide key={newsItem?.id}>
2025-02-26 08:34:45 +00:00
<Card
radius="lg"
className="border-none rounded-xl shadow-none"
>
2025-02-25 10:30:33 +00:00
<Image
2025-02-24 12:24:58 +00:00
alt="headernews"
src={
newsItem?.thumbnailUrl == ""
? "/no-image.jpg"
: newsItem?.thumbnailUrl
}
2025-03-26 08:27:09 +00:00
className="!w-[90vh] md:!w-[95vh] !h-[200px] md:!h-[400px] object-cover !rounded-b-none"
2025-02-25 10:30:33 +00:00
/>
2025-01-14 15:30:13 +00:00
2025-02-26 08:34:45 +00:00
<CardFooter className="before:bg-white/10 border-gray-100 border-1 rounded-b-xl shadow-sm bottom-1 w-full">
2025-02-24 12:24:58 +00:00
<div className="text-black dark:text-white">
<Link
href={`news/detail/${newsItem.id}-${newsItem?.slug}`}
>
2025-02-26 08:34:45 +00:00
<p className="text-left font-semibold text-sm">
2025-02-24 12:24:58 +00:00
{textEllipsis(newsItem.title, 40)}
</p>
</Link>
2025-02-26 08:34:45 +00:00
<p className="py-[2px] text-left text-xs">
2025-01-17 02:57:45 +00:00
{convertDateFormat(newsItem.createdAt)} WIB
</p>
2025-02-26 08:34:45 +00:00
<p className="flex items-center gap-1 text-xs">
2025-02-24 12:24:58 +00:00
<EyeIcon className="text-black dark:text-white" />
2025-01-17 02:57:45 +00:00
{newsItem.viewCount === null ? 0 : newsItem.viewCount}
</p>
</div>
2025-02-24 12:24:58 +00:00
</CardFooter>
</Card>
</SwiperSlide>
))}
</Swiper>
) : (
<CircularProgress aria-label="Loading..." size="lg" />
)}
2025-02-10 09:16:52 +00:00
</div>
2025-03-26 08:27:09 +00:00
<div className="w-[90%] lg:w-[25%] p-2 dark:bg-stone-800 bg-[#f0f0f0] dark:text-white text-black rounded-xl mb-2 md:mb-0 h-[40vh] lg:h-[500px] mx-auto">
2025-02-24 12:24:58 +00:00
<p className="text-base font-bold text-center dark:text-white text-black">
2025-04-23 07:13:14 +00:00
{/* {t("berita")} */}
Hot Topik
2025-02-24 12:24:58 +00:00
</p>
2025-03-26 08:27:09 +00:00
<ScrollShadow hideScrollBar className="h-[29vh] lg:h-[400px] ">
2025-02-24 12:24:58 +00:00
{hotNews?.map((data: any, index: number) => (
<div
className="text-xs text-left m-2 p-2 dark:bg-[#1E1616] bg-white rounded-md flex flex-row gap-2"
key={data?.id}
>
{/* <Image
height={480}
width={480}
alt="headernews"
src={
data?.thumbnailUrl == ""
? "/no-image.jpg"
: data?.thumbnailUrl
}
className="object-cover w-[60px] h-[60px] rounded-md"
/> */}
<div>
<Link
href={`/news/detail/${data?.id}-${data?.slug}`}
className="lg:hidden"
>
{textEllipsis(data.title, 40)}
</Link>
<Link
href={`/news/detail/${data?.id}-${data?.slug}`}
key={data?.id}
className="hidden lg:block"
>
{textEllipsis(data.title, 66)}
2025-02-10 09:16:52 +00:00
</Link>
2025-02-24 12:24:58 +00:00
<div className="flex flex-row gap-2 text-[10px]">
<p className="py-[2px]">
{convertDateFormat(data.createdAt)} WIB
2025-02-10 09:16:52 +00:00
</p>
2025-02-24 12:24:58 +00:00
<p className="flex items-center gap-1">
<EyeIcon size={14} />
{data.viewCount === null ? 0 : data.viewCount}
2025-02-10 09:16:52 +00:00
</p>
</div>
</div>
2025-02-24 12:24:58 +00:00
</div>
))}
</ScrollShadow>
<div className="m-2">
<Link href="/news/all">
<Button
className="w-full bg-gradient-to-r from-red-700 to-[#bb3523] text-white font-bold rounded-md focus:outline-none"
radius="none"
>
2025-04-23 07:13:14 +00:00
{/* {t("semua")} */}
Lihat Semua
2025-02-24 12:24:58 +00:00
</Button>
2025-02-17 10:01:58 +00:00
</Link>
2025-02-10 09:16:52 +00:00
</div>
2025-02-24 12:24:58 +00:00
</div>
2025-03-26 08:27:09 +00:00
<div className="hidden lg:flex w-full lg:w-[50%] h-[500px]">
2025-05-26 06:07:26 +00:00
{hotNews ? (
2025-02-24 12:24:58 +00:00
<Swiper
centeredSlides={true}
autoplay={{
delay: 5000,
disableOnInteraction: false,
}}
navigation={true}
modules={[Autoplay, Controller, Navigation]}
className="mySwiper"
onSwiper={(swiper) => {
swiper.navigation.nextEl?.classList.add(
"bg-white/70",
"!text-black",
"rounded-full",
"!w-[40px]",
"!h-[40px]"
);
swiper.navigation.prevEl?.classList.add(
"bg-white/70",
"!text-black",
"rounded-full",
"!w-[40px]",
"!h-[40px]"
);
}}
>
2025-05-26 03:20:01 +00:00
{hotNews?.map((newsItem: any, index: number) => (
2025-03-26 08:27:09 +00:00
<SwiperSlide key={newsItem?.id} className="!w-full h-[50vh]">
2025-02-24 12:24:58 +00:00
<Card
isFooterBlurred
radius="lg"
2025-03-26 08:27:09 +00:00
className="border-none h-[50vh] lg:h-[500px] shadow-none"
2025-02-24 12:24:58 +00:00
>
<Image
alt="headernews"
src={
newsItem?.thumbnailUrl == ""
? "/no-image.jpg"
: newsItem?.thumbnailUrl
}
2025-03-26 08:27:09 +00:00
className="!w-full !h-[500px] !object-cover !rounded-none"
2025-02-24 12:24:58 +00:00
/>
<CardFooter className="mb-1 max-h-[20vh] before:bg-white/10 border-white/20 border-1 overflow-hidden py-1 md:absolute before:rounded-xl rounded-large bottom-1 w-[calc(100%_-_8px)] shadow-small ml-1 z-10">
<div className="text-white">
<Link
href={`news/detail/${newsItem.id}-${newsItem?.slug}`}
>
<p className="text-left font-semibold text-lg lg:text-2xl">
2025-05-26 06:07:26 +00:00
{textEllipsis(newsItem.title, 40)}
2025-02-24 12:24:58 +00:00
</p>
</Link>
<div className="flex flex-row gap-1">
<p className="py-[2px] text-left text-sm">
{convertDateFormat(newsItem.createdAt)} WIB
</p>
<p className="flex items-center gap-1 text-sm">
<EyeIcon />
{newsItem.viewCount === null
? 0
: newsItem.viewCount}
</p>
</div>
</div>
</CardFooter>
</Card>
</SwiperSlide>
))}
</Swiper>
) : (
<CircularProgress aria-label="Loading..." size="lg" />
)}
</div>
2025-03-26 08:27:09 +00:00
<div className="w-[90%] lg:w-[25%] h-[50vh] lg:h-[500px] rounded-md text-white dark:text-black mx-auto lg:mx-0">
2025-02-24 12:24:58 +00:00
{/* <GPRKominfo /> */}
{selectedTab === "media" ? (
2025-03-26 08:27:09 +00:00
<div className="lg:h-[500px] p-2 dark:bg-stone-800 bg-[#f0f0f0] text-black dark:text-white rounded-lg">
2025-02-24 12:24:58 +00:00
<div className="text-sm flex flex-row gap-3 mx-2 mb-2">
<a
onClick={() => setSelectedTab("media")}
className={
2025-02-25 10:30:33 +00:00
"text-black dark:text-white border-b-3 border-red-400 cursor-pointer p-0"
2025-02-24 12:24:58 +00:00
}
>
2025-04-23 07:13:14 +00:00
{/* {t("terkini")} */}
Berita Terkini
2025-02-24 12:24:58 +00:00
</a>
<a
onClick={() => setSelectedTab("video")}
className={"text-slate-300 cursor-pointer"}
>
Video Virtual
</a>
</div>
2025-03-26 08:27:09 +00:00
<ScrollShadow hideScrollBar className="h-[39vh] lg:h-[400px]">
2025-02-24 12:24:58 +00:00
{article?.map((list: any, index: number) => (
<div
key={list?.id}
className="text-xs text-left m-2 p-2 dark:bg-[#1E1616] bg-white rounded-md"
>
<Link href={`news/detail/${list?.id}`}>
2025-05-26 06:07:26 +00:00
<p className="text-left font-semibold">
{" "}
{textEllipsis(list.title, 120)}
</p>
2025-02-24 12:24:58 +00:00
</Link>
<div className="flex flex-row gap-1">
<p className="py-[2px] text-left text-xs">
{convertDateFormat(list?.createdAt)} WIB
</p>
<p className="flex items-center gap-1 text-xs">
<EyeIcon />
{list?.viewCount === null ? 0 : list?.viewCount}
</p>
</div>
</div>
))}
</ScrollShadow>
2025-03-18 08:30:18 +00:00
<Link href="/news/all">
<Button
className="w-full bg-gradient-to-r from-red-700 to-[#bb3523] text-white font-bold rounded-md focus:outline-none"
radius="none"
>
Lihat Semua
</Button>
</Link>
2025-02-24 12:24:58 +00:00
</div>
) : (
2025-02-25 10:30:33 +00:00
<div className="lg:!h-[50vh] p-2 dark:bg-stone-800 bg-[#f0f0f0] text-black dark:text-white rounded-lg">
<div className="text-sm flex flex-row gap-3 mx-2 mb-2">
2025-02-24 12:24:58 +00:00
<a
2025-02-25 10:30:33 +00:00
className={"text-slate-300 cursor-pointer"}
2025-02-24 12:24:58 +00:00
onClick={() => setSelectedTab("media")}
>
2025-04-23 07:13:14 +00:00
{/* {t("terkini")} */}
Berita Terkini
2025-02-24 12:24:58 +00:00
</a>
<a
onClick={() => setSelectedTab("video")}
className={
2025-02-25 10:30:33 +00:00
"text-black dark:text-white border-b-3 border-red-400 cursor-pointer p-0"
2025-02-24 12:24:58 +00:00
}
>
Video Virtual
</a>
</div>
2025-02-25 10:30:33 +00:00
<ScrollShadow hideScrollBar className="h-[39vh]">
<div className="p-2 flex flex-col gap-2 text-sm">
<Link
target="_blank"
href="https://www.youtube.com/watch?v=6_g_PyiFcNo"
className="dark:bg-[#1E1616] bg-white rounded-lg p-3 text-xs"
>
IKLAN LAYANAN MASYARAKAT DIVHUMAS POLRI - POLRI PRESISI
UNTUK INDONESIA
</Link>
<Link
target="_blank"
href="https://www.youtube.com/watch?v=p0AJEwvJ7gU"
className="dark:bg-[#1E1616] bg-white rounded-lg p-3 text-xs"
>
ILM DIVHUMAS POLRI - POLRI PRESISI MENGAWAL PROSES VAKSINASI
UNTUK MENGATASI PANDEMI COVID 19
</Link>
<Link
target="_blank"
href="https://www.youtube.com/watch?v=jaihQPjxcy4"
className="dark:bg-[#1E1616] bg-white rounded-lg p-3 text-xs"
>
IKLAN LAYANAN MASYARAKAT DIVHUMAS POLRI - INDONESIA MENOLAK
RADIKALISME
</Link>
<Link
target="_blank"
href="https://www.youtube.com/watch?v=umPEo0FYTQk"
className="dark:bg-[#1E1616] bg-white rounded-lg p-3 text-xs"
>
IKLAN LAYANAN MASYARAKAT DIVHUMAS POLRI - BHABINKAMTIBMAS
SAHABAT MASYARAKAT
</Link>
</div>
</ScrollShadow>
2025-02-24 12:24:58 +00:00
</div>
)}
</div>
2024-11-05 06:15:40 +00:00
</div>
</div>
);
}