603 lines
22 KiB
TypeScript
603 lines
22 KiB
TypeScript
import { formatDateToIndonesian, shimmer, toBase64 } from "@/utils/globals";
|
|
import React, { useEffect, useRef, useState } from "react";
|
|
import "swiper/css/bundle";
|
|
import "swiper/css/navigation";
|
|
import {
|
|
getHeroData,
|
|
listPopUp,
|
|
listStaticBanner,
|
|
} from "@/service/landing/landing";
|
|
import Link from "next/link";
|
|
import { useParams, usePathname, useRouter } from "next/navigation";
|
|
import {
|
|
Carousel,
|
|
CarouselContent,
|
|
CarouselItem,
|
|
CarouselNext,
|
|
CarouselPrevious,
|
|
} from "@/components/ui/carousel";
|
|
import { Skeleton } from "../ui/skeleton";
|
|
import Image from "next/image";
|
|
import Cookies from "js-cookie";
|
|
import { Tabs, TabsContent, TabsList, TabsTrigger } from "../ui/tabs";
|
|
import {
|
|
Card,
|
|
CardContent,
|
|
CardDescription,
|
|
CardFooter,
|
|
CardHeader,
|
|
CardTitle,
|
|
} from "../ui/card";
|
|
import { Label } from "../ui/label";
|
|
import { Input } from "../ui/input";
|
|
import { Button } from "../ui/button";
|
|
import { Textarea } from "../ui/textarea";
|
|
import { Checkbox } from "../ui/checkbox";
|
|
import {
|
|
Dialog,
|
|
DialogClose,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
} from "../ui/dialog";
|
|
import { Autoplay, Navigation, Pagination } from "swiper/modules";
|
|
import { Swiper, SwiperClass, SwiperSlide } from "swiper/react";
|
|
import "swiper/css";
|
|
import "swiper/css/navigation";
|
|
import "swiper/css/pagination";
|
|
import { ChevronLeft, ChevronRight } from "lucide-react";
|
|
|
|
type HeroModalProps = {
|
|
onClose: () => void;
|
|
group: string;
|
|
poldaName?: string;
|
|
satkerName?: string;
|
|
};
|
|
|
|
// const HeroModal = ({ onClose, group, poldaName, satkerName }: HeroModalProps) => {
|
|
// const [heroData, setHeroData] = useState<any>();
|
|
// const params = useParams();
|
|
// const locale = params?.locale;
|
|
// const swiperRef = useRef<SwiperClass | null>(null);
|
|
|
|
// useEffect(() => {
|
|
// async function fetchCategories() {
|
|
// const url = "https://new.netidhub.com/api/csrf";
|
|
|
|
// try {
|
|
// const response = await fetch(url);
|
|
|
|
// if (!response.ok) {
|
|
// throw new Error(`HTTP error! status: ${response.status}`);
|
|
// }
|
|
|
|
// const data = await response.json();
|
|
// return data;
|
|
// } catch (error) {
|
|
// console.error("Fetch error: ", error);
|
|
// }
|
|
// }
|
|
|
|
// fetchCategories();
|
|
// initFetch();
|
|
// }, []);
|
|
|
|
// useEffect(() => {
|
|
// document.body.classList.add("overflow-hidden");
|
|
|
|
// return () => {
|
|
// document.body.classList.remove("overflow-hidden");
|
|
// };
|
|
// }, []);
|
|
|
|
// const initFetch = async () => {
|
|
// if (group === "satker" && satkerName && String(satkerName).length > 1) {
|
|
// const response = await listStaticBanner(satkerName, locale == "en");
|
|
|
|
// const banners =
|
|
// response?.data?.data?.map((item: any) => {
|
|
// const media = item?.mediaUpload;
|
|
// if (media?.fileType) {
|
|
// media.fileTypeId = media.fileType.id;
|
|
// }
|
|
// return media;
|
|
// }) || [];
|
|
|
|
// console.log("banner Modal", banners);
|
|
// setHeroData(banners);
|
|
// } else {
|
|
// console.log("Test");
|
|
// setHeroData([]);
|
|
// }
|
|
// };
|
|
|
|
// return (
|
|
// <div className="fixed inset-0 flex items-center justify-center backdrop-brightness-50 z-50 ">
|
|
// <div className="relative dark:bg-gray-900 rounded-lg w-[90%] md:w-[600px] p-4 shadow-none">
|
|
// {heroData?.length > 0 && (
|
|
// <>
|
|
// <button className="absolute left-3 top-1/2 z-10 -translate-y-1/2 text-white text-3xl" onClick={() => swiperRef.current?.slidePrev()}>
|
|
// <ChevronLeft />
|
|
// </button>
|
|
// <button className="absolute right-3 top-1/2 z-10 -translate-y-1/2 text-white text-3xl" onClick={() => swiperRef.current?.slideNext()}>
|
|
// <ChevronRight />
|
|
// </button>
|
|
// </>
|
|
// )}
|
|
// <Swiper pagination={{ dynamicBullets: true }} modules={[Pagination, Autoplay]} onSwiper={(swiper) => (swiperRef.current = swiper)} autoplay={{ delay: 3000 }} className="mySwiper w-full">
|
|
// <div className="relative h-[310px] lg:h-[420px]">
|
|
// <button onClick={onClose} className="absolute top-3 right-3 text-gray-700 dark:text-gray-300 hover:text-black dark:hover:text-white border border-white bg-white rounded-full h-8 w-8 z-10">
|
|
// ✕
|
|
// </button>
|
|
|
|
// {heroData && heroData.length > 0 ? (
|
|
// heroData.map((list: any, index: number) => (
|
|
// <SwiperSlide key={list?.id}>
|
|
// <div className="relative h-[310px] lg:h-[420px]">
|
|
// <Image priority={true} src={list?.smallThumbnailLink} alt="gambar-utama" width={1920} height={1080} placeholder={`data:image/svg+xml;base64,${toBase64(shimmer(700, 475))}`} className="w-full h-[310px] lg:h-[420px] rounded-lg object-cover" />
|
|
|
|
// <div className="absolute bottom-0 left-0 right-0 bg-black/30 backdrop-brightness-50 text-white pb-4 px-4 pt-8 rounded-bl-2xl rounded-tr-2xl mx-3 mb-2">
|
|
// <div className="absolute top-0 left-0 bottom-0 w-2 bg-[#bb3523] rounded-bl-lg"></div>
|
|
// <span className="absolute top-0 left-0 mt-2 mb-3 mx-3 bg-[#bb3523] text-white text-xs font-semibold uppercase px-2 py-1 rounded">{list?.categoryName || "Liputan Kegiatan"}</span>
|
|
|
|
// <Link href={`${locale}/image/detail/${list?.slug}`}>
|
|
// <h2 className="text-lg leading-tight">{list?.title}</h2>
|
|
// </Link>
|
|
|
|
// <p className="text-xs flex items-center gap-1 mt-2 opacity-80">
|
|
// {formatDateToIndonesian(new Date(list?.createdAt))} {list?.timezone || "WIB"} |{" "}
|
|
// <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" className="inline-block">
|
|
// <path
|
|
// fill="currentColor"
|
|
// d="M11.5 18c4 0 7.46-2.22 9.24-5.5C18.96 9.22 15.5 7 11.5 7s-7.46 2.22-9.24 5.5C4.04 15.78 7.5 18 11.5 18m0-12c4.56 0 8.5 2.65 10.36 6.5C20 16.35 16.06 19 11.5 19S3 16.35 1.14 12.5C3 8.65 6.94 6 11.5 6m0 2C14 8 16 10 16 12.5S14 17 11.5 17S7 15 7 12.5S9 8 11.5 8m0 1A3.5 3.5 0 0 0 8 12.5a3.5 3.5 0 0 0 3.5 3.5a3.5 3.5 0 0 0 3.5-3.5A3.5 3.5 0 0 0 11.5 9"
|
|
// />
|
|
// </svg>
|
|
// {list?.clickCount}
|
|
// </p>
|
|
// </div>
|
|
// </div>
|
|
// </SwiperSlide>
|
|
// ))
|
|
// ) : (
|
|
// <div className="flex items-center justify-center h-full">
|
|
// <Image priority={true} width={1920} height={1080} src="/assets/empty-data.png" alt="empty" className="h-52 w-52 my-4" />
|
|
// </div>
|
|
// )}
|
|
// </div>
|
|
|
|
// <style jsx global>{`
|
|
// .swiper-pagination-bullet {
|
|
// background: white !important;
|
|
// opacity: 0.7;
|
|
// }
|
|
// .swiper-pagination-bullet-active {
|
|
// background: white !important;
|
|
// opacity: 1;
|
|
// }
|
|
// `}</style>
|
|
// </Swiper>
|
|
// </div>
|
|
// </div>
|
|
// );
|
|
// };
|
|
|
|
const HeroModal = ({
|
|
onClose,
|
|
group,
|
|
poldaName,
|
|
satkerName,
|
|
}: HeroModalProps) => {
|
|
const [heroData, setHeroData] = useState<any[]>([]);
|
|
const params = useParams();
|
|
const locale = params?.locale;
|
|
const swiperRef = useRef<SwiperClass | null>(null);
|
|
const pathname = usePathname();
|
|
const modalRef = useRef<HTMLDivElement>(null);
|
|
|
|
let prefixPath = "";
|
|
if (group === "polda" && poldaName) {
|
|
prefixPath = `/polda/${poldaName}`;
|
|
} else if (group === "satker" && satkerName) {
|
|
prefixPath = `/satker/${satkerName}`;
|
|
}
|
|
|
|
useEffect(() => {
|
|
initFetch();
|
|
document.body.classList.add("overflow-hidden");
|
|
|
|
return () => {
|
|
document.body.classList.remove("overflow-hidden");
|
|
};
|
|
}, []);
|
|
|
|
// const initFetch = async () => {
|
|
// const response = await listPopUp(
|
|
// group === "mabes"
|
|
// ? ""
|
|
// : group === "polda" && poldaName
|
|
// ? poldaName
|
|
// : group === "satker" && satkerName
|
|
// ? "satker-" + satkerName
|
|
// : "",
|
|
// locale == "en"
|
|
// );
|
|
// const interstitial = response?.data?.data || [];
|
|
// setHeroData(interstitial);
|
|
// };
|
|
|
|
const initFetch = async () => {
|
|
const response = await listStaticBanner(
|
|
group === "mabes"
|
|
? ""
|
|
: group === "polda" && poldaName
|
|
? poldaName
|
|
: group === "satker" && satkerName
|
|
? "satker-" + satkerName
|
|
: "",
|
|
locale === "en"
|
|
);
|
|
|
|
const banners = response?.data?.data || [];
|
|
|
|
const enrichedData = banners.map((item: any) => ({
|
|
...item,
|
|
fileTypeId: item?.fileType?.id ?? null,
|
|
}));
|
|
|
|
setHeroData(enrichedData);
|
|
};
|
|
|
|
const handleClickOutside = (event: React.MouseEvent<HTMLDivElement>) => {
|
|
if (modalRef.current && !modalRef.current.contains(event.target as Node)) {
|
|
onClose();
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div
|
|
onClick={handleClickOutside}
|
|
className="fixed inset-0 flex items-center justify-center backdrop-brightness-50 z-50"
|
|
>
|
|
<div
|
|
ref={modalRef}
|
|
className="relative dark:bg-gray-900 rounded-lg w-[90%] md:w-[600px] p-4 shadow-none"
|
|
>
|
|
{heroData?.length > 0 && (
|
|
<>
|
|
<button
|
|
className="absolute left-3 top-1/2 z-10 -translate-y-1/2 text-white text-3xl"
|
|
onClick={() => swiperRef.current?.slidePrev()}
|
|
>
|
|
<ChevronLeft />
|
|
</button>
|
|
<button
|
|
className="absolute right-3 top-1/2 z-10 -translate-y-1/2 text-white text-3xl"
|
|
onClick={() => swiperRef.current?.slideNext()}
|
|
>
|
|
<ChevronRight />
|
|
</button>
|
|
</>
|
|
)}
|
|
<Swiper
|
|
pagination={{ dynamicBullets: true }}
|
|
modules={[Pagination, Autoplay]}
|
|
onSwiper={(swiper) => (swiperRef.current = swiper)}
|
|
autoplay={{ delay: 3000 }}
|
|
className="mySwiper w-full"
|
|
>
|
|
{heroData.map((list: any) => (
|
|
<SwiperSlide key={list?.id}>
|
|
<div className="relative h-[310px] lg:h-[420px]">
|
|
<button
|
|
onClick={onClose}
|
|
className="absolute top-3 right-3 text-gray-700 dark:text-gray-300 hover:text-black dark:hover:text-white border border-white bg-white rounded-full h-8 w-8"
|
|
>
|
|
✕
|
|
</button>
|
|
<Image
|
|
priority={true}
|
|
src={list?.smallThumbnailLink}
|
|
alt="gambar-utama"
|
|
width={1920}
|
|
height={1080}
|
|
placeholder={`data:image/svg+xml;base64,${toBase64(
|
|
shimmer(700, 475)
|
|
)}`}
|
|
className="w-full h-[310px] lg:h-[420px] rounded-lg object-cover"
|
|
/>
|
|
<div className="absolute bottom-0 left-0 right-0 bg-black/30 backdrop-brightness-50 text-white pb-4 px-4 pt-8 rounded-bl-2xl rounded-tr-2xl mx-3 mb-2">
|
|
<div className="absolute top-0 left-0 bottom-0 w-2 bg-[#bb3523] rounded-bl-lg"></div>
|
|
<span className="absolute top-0 left-0 mt-2 mb-3 mx-3 bg-[#bb3523] text-white text-xs font-semibold uppercase px-2 py-1 rounded">
|
|
{list?.categoryName || "Liputan Kegiatan"}
|
|
</span>
|
|
<Link
|
|
href={
|
|
Number(list?.fileTypeId) === 1
|
|
? `${prefixPath}/image/detail/${list?.slug}`
|
|
: Number(list?.fileTypeId) === 2
|
|
? `${prefixPath}/video/detail/${list?.slug}`
|
|
: Number(list?.fileTypeId) === 3
|
|
? `${prefixPath}/document/detail/${list?.slug}`
|
|
: `${prefixPath}/audio/detail/${list?.slug}`
|
|
}
|
|
>
|
|
<h2 className="text-lg leading-tight">{list?.title}</h2>
|
|
</Link>
|
|
<p className="text-xs flex items-center gap-1 mt-2 opacity-80">
|
|
{formatDateToIndonesian(new Date(list?.createdAt))}{" "}
|
|
{list?.timezone || "WIB"} |{" "}
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="1em"
|
|
height="1em"
|
|
viewBox="0 0 24 24"
|
|
className="inline-block"
|
|
>
|
|
<path
|
|
fill="currentColor"
|
|
d="M11.5 18c4 0 7.46-2.22 9.24-5.5C18.96 9.22 15.5 7 11.5 7s-7.46 2.22-9.24 5.5C4.04 15.78 7.5 18 11.5 18m0-12c4.56 0 8.5 2.65 10.36 6.5C20 16.35 16.06 19 11.5 19S3 16.35 1.14 12.5C3 8.65 6.94 6 11.5 6m0 2C14 8 16 10 16 12.5S14 17 11.5 17S7 15 7 12.5S9 8 11.5 8m0 1A3.5 3.5 0 0 0 8 12.5a3.5 3.5 0 0 0 3.5 3.5a3.5 3.5 0 0 0 3.5-3.5A3.5 3.5 0 0 0 11.5 9"
|
|
/>
|
|
</svg>
|
|
{list?.clickCount}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</SwiperSlide>
|
|
))}
|
|
<style jsx global>{`
|
|
.swiper-pagination-bullet {
|
|
background: white !important;
|
|
opacity: 0.7;
|
|
}
|
|
.swiper-pagination-bullet-active {
|
|
background: white !important;
|
|
opacity: 1;
|
|
}
|
|
`}</style>
|
|
</Swiper>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const ONE_MONTH = 30 * 24 * 60 * 60 * 1000;
|
|
|
|
const HeroNewSatker = (props: { group?: string }) => {
|
|
const router = useRouter();
|
|
const pathname = usePathname();
|
|
const params = useParams();
|
|
const locale = params?.locale;
|
|
const [isLoading, setIsLoading] = useState<any>(true);
|
|
const [heroData, setHeroData] = useState<any>();
|
|
const [content, setContent] = useState<any>();
|
|
const [showModal, setShowModal] = useState(false);
|
|
const [showSurveyModal, setShowSurveyModal] = useState(false);
|
|
const [showFormModal, setShowFormModal] = useState(false);
|
|
const poldaName = params?.polda_name;
|
|
const satkerName = params?.satker_name;
|
|
|
|
useEffect(() => {
|
|
const timer = setTimeout(() => {
|
|
setIsLoading(false);
|
|
}, 3000);
|
|
|
|
return () => clearTimeout(timer);
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
const roleId = Cookies.get("urie");
|
|
if (!roleId) {
|
|
setShowModal(true);
|
|
}
|
|
initFetch();
|
|
}, []);
|
|
|
|
// useEffect(() => {
|
|
// const roleId = Cookies.get("urie");
|
|
// const lastShown = Cookies.get("surveyLastShown");
|
|
// const now = new Date().getTime();
|
|
|
|
// if (roleId && roleId !== "2") {
|
|
// if (!lastShown || now - parseInt(lastShown) > ONE_MONTH) {
|
|
// setShowSurveyModal(true);
|
|
// Cookies.set("surveyLastShown", now.toString(), { expires: 30 });
|
|
// }
|
|
// }
|
|
|
|
// initFetch();
|
|
// }, []);
|
|
|
|
useEffect(() => {
|
|
const roleId = Cookies.get("urie");
|
|
const lastShown = Cookies.get("surveyLastShown");
|
|
const now = new Date().getTime();
|
|
|
|
const allowedRoles = ["1", "2", "3"];
|
|
|
|
if (roleId && allowedRoles.includes(roleId)) {
|
|
if (!lastShown || now - parseInt(lastShown) > ONE_MONTH) {
|
|
setShowSurveyModal(true);
|
|
Cookies.set("surveyLastShown", now.toString(), { expires: 30 });
|
|
}
|
|
}
|
|
|
|
initFetch();
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
initFetch();
|
|
}, []);
|
|
|
|
const initFetch = async () => {
|
|
const response = await getHeroData(locale == "en");
|
|
console.log(response);
|
|
let data = response?.data?.data?.content;
|
|
setHeroData(data);
|
|
|
|
if (
|
|
data &&
|
|
props.group === "satker" &&
|
|
satkerName &&
|
|
String(satkerName)?.length > 1
|
|
) {
|
|
const resStatic = await listStaticBanner(satkerName, locale == "en");
|
|
|
|
for (let i = 0; i < resStatic?.data?.data?.length; i++) {
|
|
const media = resStatic?.data.data[i]?.mediaUpload;
|
|
media.fileTypeId = media.fileType?.id;
|
|
data = data.filter((item: any) => item.id != media.id);
|
|
data.splice(0, 0, media);
|
|
}
|
|
|
|
setContent(data);
|
|
}
|
|
};
|
|
|
|
const shimmer = (w: number, h: number) => `
|
|
<svg width="${w}" height="${h}" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
<defs>
|
|
<linearGradient id="g">
|
|
<stop stop-color="#bcbcbd" offset="20%" />
|
|
<stop stop-color="#f9fafb" offset="50%" />
|
|
<stop stop-color="#bcbcbd" offset="70%" />
|
|
</linearGradient>
|
|
</defs>
|
|
<rect width="${w}" height="${h}" fill="#bcbcbd" />
|
|
<rect id="r" width="${w}" height="${h}" fill="url(#g)" />
|
|
<animate xlink:href="#r" attributeName="x" from="-${w}" to="${w}" dur="1s" repeatCount="indefinite" />
|
|
</svg>`;
|
|
|
|
const toBase64 = (str: string) =>
|
|
typeof window === "undefined"
|
|
? Buffer.from(str).toString("base64")
|
|
: window.btoa(str);
|
|
|
|
return (
|
|
<div className="flex items-start justify-center mx-auto w-auto">
|
|
<div className="relative">
|
|
{showModal && (
|
|
<HeroModal onClose={() => setShowModal(false)} group="satker" />
|
|
)}
|
|
</div>
|
|
{isLoading ? (
|
|
<div className="flex flex-col space-y-3 mx-auto w-full lg:w-2/3">
|
|
<Skeleton className="h-[310px] lg:h-[420px]" />
|
|
<div className="space-y-2">
|
|
<Skeleton className="h-4 w-[250px]" />
|
|
<Skeleton className="h-4 w-[200px]" />
|
|
</div>
|
|
</div>
|
|
) : (
|
|
<div className="relative w-full h-full">
|
|
<Carousel className="lg:w-full lg:h-full">
|
|
<CarouselContent>
|
|
{content?.map((list: any) => (
|
|
<CarouselItem key={list?.id}>
|
|
<div className="relative h-[310px] lg:h-[700px] mt-1">
|
|
<Image
|
|
priority={true}
|
|
src={list?.smallThumbnailLink}
|
|
alt="gambar-utama"
|
|
width={1920}
|
|
height={1080}
|
|
placeholder={`data:image/svg+xml;base64,${toBase64(
|
|
shimmer(700, 475)
|
|
)}`}
|
|
className="w-full h-[320px] lg:h-[700px] object-cover"
|
|
/>
|
|
<div className="absolute inset-0 bg-black bg-opacity-40" />
|
|
|
|
<Link
|
|
href={
|
|
Number(list?.fileTypeId) == 1
|
|
? `${locale}/image/detail/${list?.slug}`
|
|
: Number(list?.fileTypeId) == 2
|
|
? `${locale}/video/detail/${list?.slug}`
|
|
: Number(list?.fileTypeId) == 3
|
|
? `${locale}/document/detail/${list?.slug}`
|
|
: `${locale}/audio/detail/${list?.slug}`
|
|
}
|
|
>
|
|
<div className="absolute bottom-20 left-32 w-[60%] lg:w-[45%] text-white px-4 pt-10 pb-4">
|
|
<span className="absolute top-0 left-3 text-red-600 text-lg font-bold uppercase px-1 py-2 rounded">
|
|
{list?.categoryName || "Liputan Kegiatan"}
|
|
</span>
|
|
<h2 className="text-xl font-bold leading-tight">
|
|
{list?.title}
|
|
</h2>
|
|
<p className="text-base flex items-center gap-1 mt-2 opacity-80">
|
|
{formatDateToIndonesian(new Date(list?.createdAt))}{" "}
|
|
{list?.timezone || "WIB"} | 👁 {list?.clickCount}
|
|
</p>
|
|
</div>
|
|
</Link>
|
|
</div>
|
|
</CarouselItem>
|
|
))}
|
|
</CarouselContent>
|
|
</Carousel>
|
|
|
|
<div className="hidden lg:flex flex-col gap-3 absolute bottom-4 right-4 w-[520px] bg-black/40 p-4 rounded-lg z-10">
|
|
{heroData?.slice(0, 3).map((item: any) => (
|
|
<li key={item?.id} className="flex gap-4 flex-row lg:w-full mx-2">
|
|
<div className="flex-shrink-0 w-32 rounded-lg">
|
|
<Image
|
|
priority={true}
|
|
placeholder={`data:image/svg+xml;base64,${toBase64(
|
|
shimmer(700, 475)
|
|
)}`}
|
|
width={720}
|
|
height={480}
|
|
src={item?.smallThumbnailLink}
|
|
alt={item?.title}
|
|
className="w-full h-[100px] object-cover rounded-lg"
|
|
/>
|
|
</div>
|
|
<div className="w-[280px] lg:w-[200px]">
|
|
<Link
|
|
href={
|
|
Number(item?.fileTypeId) == 1
|
|
? `${locale}/image/detail/${item?.slug}`
|
|
: Number(item?.fileTypeId) == 2
|
|
? `${locale}/video/detail/${item?.slug}`
|
|
: Number(item?.fileTypeId) == 3
|
|
? `${locale}/document/detail/${item?.slug}`
|
|
: `${locale}/audio/detail/${item?.slug}`
|
|
}
|
|
>
|
|
<span className="py-1 rounded-lg flex text-red-600 font-bold uppercase w-fit">
|
|
{item?.categoryName}
|
|
</span>
|
|
<h3 className="text-base text-white font-bold h-6 hover:h-auto truncate hover:whitespace-normal hover:overflow-visible">
|
|
{item?.title}
|
|
</h3>
|
|
<p className="text-[10px] flex flex-row items-center gap-1 text-white mt-1">
|
|
{formatDateToIndonesian(new Date(item?.createdAt))}{" "}
|
|
{item?.timezone || "WIB"} |{" "}
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="1.2em"
|
|
height="1.2em"
|
|
viewBox="0 0 24 24"
|
|
>
|
|
<path
|
|
fill="currentColor"
|
|
d="M11.5 18c4 0 7.46-2.22 9.24-5.5C18.96 9.22 15.5 7 11.5 7s-7.46 2.22-9.24 5.5C4.04 15.78 7.5 18 11.5 18m0-12c4.56 0 8.5 2.65 10.36 6.5C20 16.35 16.06 19 11.5 19S3 16.35 1.14 12.5C3 8.65 6.94 6 11.5 6m0 2C14 8 16 10 16 12.5S14 17 11.5 17S7 15 7 12.5S9 8 11.5 8m0 1A3.5 3.5 0 0 0 8 12.5a3.5 3.5 0 0 0 3.5 3.5a3.5 3.5 0 0 0 3.5-3.5A3.5 3.5 0 0 0 11.5 9"
|
|
/>
|
|
</svg>{" "}
|
|
{item?.clickCount}
|
|
</p>
|
|
</Link>
|
|
</div>
|
|
</li>
|
|
))}
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default HeroNewSatker;
|