2025-03-07 12:32:47 +00:00
|
|
|
import { formatDateToIndonesian, shimmer, toBase64 } from "@/utils/globals";
|
2024-11-26 17:00:20 +00:00
|
|
|
import React, { useEffect, useState } from "react";
|
2024-12-05 14:56:27 +00:00
|
|
|
import "swiper/css/bundle";
|
2024-12-11 15:08:03 +00:00
|
|
|
import "swiper/css/navigation";
|
2025-05-20 07:08:49 +00:00
|
|
|
import { getHeroData, listStaticBanner } from "@/service/landing/landing";
|
2024-12-09 16:09:42 +00:00
|
|
|
import Link from "next/link";
|
|
|
|
|
import { useParams, usePathname, useRouter } from "next/navigation";
|
2025-03-19 10:49:36 +00:00
|
|
|
import {
|
|
|
|
|
Carousel,
|
|
|
|
|
CarouselContent,
|
|
|
|
|
CarouselItem,
|
|
|
|
|
CarouselNext,
|
|
|
|
|
CarouselPrevious,
|
|
|
|
|
} from "@/components/ui/carousel";
|
2025-01-15 15:59:19 +00:00
|
|
|
import { Skeleton } from "../ui/skeleton";
|
2025-02-06 10:34:22 +00:00
|
|
|
import Image from "next/image";
|
2025-04-06 13:26:35 +00:00
|
|
|
import Cookies from "js-cookie";
|
|
|
|
|
import { Tabs, TabsContent, TabsList, TabsTrigger } from "../ui/tabs";
|
2025-03-19 10:49:36 +00:00
|
|
|
import {
|
2025-04-06 13:26:35 +00:00
|
|
|
Card,
|
2025-03-19 10:49:36 +00:00
|
|
|
CardContent,
|
2025-04-06 13:26:35 +00:00
|
|
|
CardDescription,
|
2025-03-19 10:49:36 +00:00
|
|
|
CardFooter,
|
2025-04-06 13:26:35 +00:00
|
|
|
CardHeader,
|
|
|
|
|
CardTitle,
|
2025-03-19 10:49:36 +00:00
|
|
|
} from "../ui/card";
|
2025-04-06 13:26:35 +00:00
|
|
|
import { Label } from "../ui/label";
|
|
|
|
|
import { Input } from "../ui/input";
|
|
|
|
|
import { Button } from "../ui/button";
|
2025-04-07 16:37:19 +00:00
|
|
|
import { Textarea } from "../ui/textarea";
|
|
|
|
|
import { Checkbox } from "../ui/checkbox";
|
|
|
|
|
import {
|
|
|
|
|
Dialog,
|
|
|
|
|
DialogClose,
|
|
|
|
|
DialogContent,
|
|
|
|
|
DialogDescription,
|
|
|
|
|
DialogHeader,
|
|
|
|
|
DialogTitle,
|
|
|
|
|
} from "../ui/dialog";
|
2025-04-13 12:30:26 +00:00
|
|
|
import { Autoplay, Pagination } from "swiper/modules";
|
|
|
|
|
import { Swiper, SwiperSlide } from "swiper/react";
|
|
|
|
|
import "swiper/css";
|
|
|
|
|
import "swiper/css/pagination";
|
2025-04-25 02:07:20 +00:00
|
|
|
import FormSurvey from "./survey";
|
2025-04-06 13:26:35 +00:00
|
|
|
|
|
|
|
|
const HeroModal = ({ onClose }: { onClose: () => void }) => {
|
|
|
|
|
const [heroData, setHeroData] = useState<any>();
|
|
|
|
|
const params = useParams();
|
|
|
|
|
const locale = params?.locale;
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
async function fetchCategories() {
|
|
|
|
|
const url = "https://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();
|
|
|
|
|
}, []);
|
|
|
|
|
|
2025-05-04 16:05:16 +00:00
|
|
|
useEffect(() => {
|
|
|
|
|
document.body.classList.add("overflow-hidden");
|
|
|
|
|
|
|
|
|
|
return () => {
|
|
|
|
|
document.body.classList.remove("overflow-hidden");
|
|
|
|
|
};
|
|
|
|
|
}, []);
|
|
|
|
|
|
2025-04-06 13:26:35 +00:00
|
|
|
const initFetch = async () => {
|
|
|
|
|
const response = await getHeroData();
|
|
|
|
|
console.log(response);
|
2025-05-20 07:50:56 +00:00
|
|
|
let data = response?.data?.data?.content;
|
|
|
|
|
if (data) {
|
|
|
|
|
const resStatic = await listStaticBanner();
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
setHeroData(data);
|
|
|
|
|
}
|
2025-04-06 13:26:35 +00:00
|
|
|
};
|
2025-05-20 07:50:56 +00:00
|
|
|
|
|
|
|
|
|
2025-04-06 13:26:35 +00:00
|
|
|
return (
|
2025-05-04 16:05:16 +00:00
|
|
|
<div className="fixed inset-0 flex items-center justify-center backdrop-brightness-50 z-50 ">
|
2025-04-06 13:26:35 +00:00
|
|
|
<div className="relative dark:bg-gray-900 rounded-lg w-[90%] md:w-[600px] p-4 shadow-none">
|
2025-04-13 12:30:26 +00:00
|
|
|
<Swiper
|
|
|
|
|
pagination={{ dynamicBullets: true }}
|
|
|
|
|
modules={[Pagination, Autoplay]}
|
|
|
|
|
className="mySwiper w-full"
|
|
|
|
|
>
|
|
|
|
|
{heroData?.map((list: any, index: number) => (
|
|
|
|
|
<SwiperSlide key={list?.id}>
|
|
|
|
|
<div className="relative h-[310px] lg:h-[420px]">
|
|
|
|
|
<button
|
|
|
|
|
onClick={onClose}
|
2025-04-29 17:16:33 +00:00
|
|
|
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"
|
2025-04-13 12:30:26 +00:00
|
|
|
>
|
|
|
|
|
✕
|
|
|
|
|
</button>
|
|
|
|
|
<Image
|
|
|
|
|
src={list?.thumbnailLink}
|
|
|
|
|
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>
|
2025-04-06 13:26:35 +00:00
|
|
|
</div>
|
2025-04-13 12:30:26 +00:00
|
|
|
</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>
|
2025-04-06 13:26:35 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|
2024-11-26 17:00:20 +00:00
|
|
|
|
2025-04-07 16:37:19 +00:00
|
|
|
const SurveyIntroModal = ({ onNext }: { onNext: () => void }) => {
|
|
|
|
|
return (
|
|
|
|
|
<div className="fixed inset-0 z-50 flex items-center justify-center bg-black/50">
|
|
|
|
|
<div className="relative bg-white rounded-xl p-6 w-[90%] max-w-md text-center">
|
|
|
|
|
<button
|
|
|
|
|
onClick={onNext}
|
|
|
|
|
className="absolute top-3 right-3 text-gray-500 hover:text-black"
|
|
|
|
|
>
|
|
|
|
|
✕
|
|
|
|
|
</button>
|
|
|
|
|
|
|
|
|
|
<Image
|
|
|
|
|
src="/assets/survey.jpg"
|
|
|
|
|
alt="Survey Illustration"
|
|
|
|
|
width={300}
|
|
|
|
|
height={200}
|
|
|
|
|
className="mx-auto my-4"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<button
|
|
|
|
|
onClick={onNext}
|
|
|
|
|
className="mt-4 bg-red-600 hover:bg-red-700 text-white font-semibold py-3 px-6 rounded w-full"
|
|
|
|
|
>
|
|
|
|
|
Lihat Selengkapnya
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
2025-04-09 12:19:36 +00:00
|
|
|
const ONE_MONTH = 30 * 24 * 60 * 60 * 1000;
|
2025-04-07 16:37:19 +00:00
|
|
|
|
2025-05-20 07:08:49 +00:00
|
|
|
const Hero = (props: { group?: string }) => {
|
2024-12-09 16:09:42 +00:00
|
|
|
const router = useRouter();
|
|
|
|
|
const pathname = usePathname();
|
|
|
|
|
const params = useParams();
|
|
|
|
|
const locale = params?.locale;
|
2025-01-15 15:59:19 +00:00
|
|
|
const [isLoading, setIsLoading] = useState<any>(true);
|
2024-12-09 16:09:42 +00:00
|
|
|
const [heroData, setHeroData] = useState<any>();
|
2025-05-20 07:08:49 +00:00
|
|
|
const [content, setContent] = useState<any>();
|
2025-04-06 13:26:35 +00:00
|
|
|
const [showModal, setShowModal] = useState(false);
|
2025-04-07 16:37:19 +00:00
|
|
|
const [showSurveyModal, setShowSurveyModal] = useState(false);
|
|
|
|
|
const [showFormModal, setShowFormModal] = useState(false);
|
2025-05-20 07:08:49 +00:00
|
|
|
const poldaName = params?.polda_name;
|
|
|
|
|
const satkerName = params?.satker_name;
|
2025-01-15 15:59:19 +00:00
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
const timer = setTimeout(() => {
|
|
|
|
|
setIsLoading(false);
|
|
|
|
|
}, 3000);
|
|
|
|
|
|
|
|
|
|
return () => clearTimeout(timer);
|
|
|
|
|
}, []);
|
|
|
|
|
|
2025-04-06 13:26:35 +00:00
|
|
|
useEffect(() => {
|
|
|
|
|
const roleId = Cookies.get("urie");
|
|
|
|
|
if (!roleId) {
|
2025-04-07 16:37:19 +00:00
|
|
|
setShowModal(true);
|
2025-04-06 13:26:35 +00:00
|
|
|
}
|
|
|
|
|
initFetch();
|
|
|
|
|
}, []);
|
|
|
|
|
|
2025-04-25 02:07:20 +00:00
|
|
|
// 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();
|
|
|
|
|
// }, []);
|
|
|
|
|
|
2025-04-07 16:37:19 +00:00
|
|
|
useEffect(() => {
|
|
|
|
|
const roleId = Cookies.get("urie");
|
|
|
|
|
const lastShown = Cookies.get("surveyLastShown");
|
|
|
|
|
const now = new Date().getTime();
|
|
|
|
|
|
2025-04-25 02:07:20 +00:00
|
|
|
const allowedRoles = ["1", "2", "3"];
|
|
|
|
|
|
|
|
|
|
if (roleId && allowedRoles.includes(roleId)) {
|
2025-04-09 12:19:36 +00:00
|
|
|
if (!lastShown || now - parseInt(lastShown) > ONE_MONTH) {
|
|
|
|
|
setShowSurveyModal(true);
|
|
|
|
|
Cookies.set("surveyLastShown", now.toString(), { expires: 30 });
|
|
|
|
|
}
|
2025-04-07 16:37:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
initFetch();
|
|
|
|
|
}, []);
|
|
|
|
|
|
2024-12-09 16:09:42 +00:00
|
|
|
useEffect(() => {
|
2025-01-09 19:34:39 +00:00
|
|
|
async function fetchCategories() {
|
2025-01-15 15:59:19 +00:00
|
|
|
const url = "https://netidhub.com/api/csrf";
|
|
|
|
|
|
2025-01-09 19:34:39 +00:00
|
|
|
try {
|
|
|
|
|
const response = await fetch(url);
|
2025-01-15 15:59:19 +00:00
|
|
|
|
2025-01-09 19:34:39 +00:00
|
|
|
if (!response.ok) {
|
|
|
|
|
throw new Error(`HTTP error! status: ${response.status}`);
|
|
|
|
|
}
|
2025-01-15 15:59:19 +00:00
|
|
|
|
2025-01-09 19:34:39 +00:00
|
|
|
const data = await response.json();
|
2025-04-06 13:26:35 +00:00
|
|
|
return data;
|
2025-01-09 19:34:39 +00:00
|
|
|
} catch (error) {
|
2025-01-15 15:59:19 +00:00
|
|
|
console.error("Fetch error: ", error);
|
2025-01-09 19:34:39 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fetchCategories();
|
2024-12-09 16:09:42 +00:00
|
|
|
initFetch();
|
|
|
|
|
}, []);
|
2025-02-24 16:36:33 +00:00
|
|
|
|
2024-12-09 16:09:42 +00:00
|
|
|
const initFetch = async () => {
|
|
|
|
|
const response = await getHeroData();
|
|
|
|
|
console.log(response);
|
2025-05-20 07:08:49 +00:00
|
|
|
let data = response?.data?.data?.content;
|
2024-12-09 16:09:42 +00:00
|
|
|
setHeroData(response?.data?.data?.content);
|
2025-05-20 07:08:49 +00:00
|
|
|
if (data) {
|
|
|
|
|
const resStatic = await listStaticBanner(
|
|
|
|
|
props.group == "mabes"
|
|
|
|
|
? ""
|
|
|
|
|
: props.group == "polda" && poldaName && String(poldaName)?.length > 1
|
|
|
|
|
? poldaName
|
|
|
|
|
: props.group == "satker" &&
|
|
|
|
|
satkerName &&
|
|
|
|
|
String(satkerName)?.length > 1
|
|
|
|
|
? "satker-" + satkerName
|
|
|
|
|
: ""
|
|
|
|
|
);
|
|
|
|
|
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);
|
|
|
|
|
}
|
2024-12-09 16:09:42 +00:00
|
|
|
};
|
2025-03-19 10:49:36 +00:00
|
|
|
|
2025-03-07 12:32:47 +00:00
|
|
|
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>`;
|
|
|
|
|
|
2025-03-19 13:56:51 +00:00
|
|
|
const toBase64 = (str: string) =>
|
|
|
|
|
typeof window === "undefined"
|
|
|
|
|
? Buffer.from(str).toString("base64")
|
|
|
|
|
: window.btoa(str);
|
2025-03-07 12:32:47 +00:00
|
|
|
|
2024-11-26 17:00:20 +00:00
|
|
|
return (
|
2025-01-04 11:52:02 +00:00
|
|
|
<div className="flex flex-col lg:flex-row items-start justify-center gap-8 px-4 lg:px-20 py-4 mx-auto w-auto mt-6">
|
2025-04-06 13:26:35 +00:00
|
|
|
<div className="relative">
|
|
|
|
|
{showModal && <HeroModal onClose={() => setShowModal(false)} />}
|
2025-04-07 16:37:19 +00:00
|
|
|
{showSurveyModal && !showFormModal && (
|
|
|
|
|
<SurveyIntroModal
|
|
|
|
|
onNext={() => {
|
|
|
|
|
setShowSurveyModal(false);
|
|
|
|
|
setShowFormModal(true);
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
)}
|
|
|
|
|
|
2025-05-23 03:34:20 +00:00
|
|
|
{/* {showFormModal && <FormSurvey />} */}
|
2025-04-06 13:26:35 +00:00
|
|
|
</div>
|
2025-01-15 15:59:19 +00:00
|
|
|
{isLoading ? (
|
|
|
|
|
<div className="flex flex-col space-y-3 mx-auto w-full lg:w-2/3">
|
|
|
|
|
<Skeleton className="h-[310px] lg:h-[420px] rounded-xl" />
|
|
|
|
|
<div className="space-y-2">
|
|
|
|
|
<Skeleton className="h-4 w-[250px]" />
|
|
|
|
|
<Skeleton className="h-4 w-[200px]" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
) : (
|
|
|
|
|
<Carousel className="lg:w-2/3 lg:h-full ">
|
|
|
|
|
<CarouselContent>
|
2025-05-20 07:08:49 +00:00
|
|
|
{content?.map((list: any) => (
|
2025-01-15 15:59:19 +00:00
|
|
|
<CarouselItem key={list?.id}>
|
2025-04-16 06:28:10 +00:00
|
|
|
<div className="relative h-[310px] lg:h-[460px] mt-1">
|
2025-03-19 10:49:36 +00:00
|
|
|
<Image
|
|
|
|
|
src={list?.thumbnailLink}
|
|
|
|
|
alt="gambar-utama"
|
|
|
|
|
width={1920}
|
|
|
|
|
height={1080}
|
2025-03-19 13:56:51 +00:00
|
|
|
placeholder={`data:image/svg+xml;base64,${toBase64(
|
|
|
|
|
shimmer(700, 475)
|
|
|
|
|
)}`}
|
2025-04-16 06:28:10 +00:00
|
|
|
className="w-full h-[320px] lg:h-[460px] rounded-lg object-cover"
|
2025-03-19 10:49:36 +00:00
|
|
|
/>
|
2025-03-07 12:32:47 +00:00
|
|
|
|
2025-04-07 16:37:19 +00:00
|
|
|
<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">
|
2025-04-29 17:16:33 +00:00
|
|
|
<div className="absolute top-0 left-0 bottom-0 w-1 bg-[#bb3523] rounded-bl-lg"></div>
|
2025-04-06 13:26:35 +00:00
|
|
|
<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"}
|
2025-03-19 10:49:36 +00:00
|
|
|
</span>
|
2025-04-06 13:26:35 +00:00
|
|
|
|
2025-01-15 15:59:19 +00:00
|
|
|
<Link href={`${locale}/image/detail/${list?.slug}`}>
|
2025-04-06 13:26:35 +00:00
|
|
|
<h2 className="text-lg leading-tight">{list?.title}</h2>
|
2025-01-15 15:59:19 +00:00
|
|
|
</Link>
|
2025-04-06 13:26:35 +00:00
|
|
|
|
|
|
|
|
<p className="text-xs flex items-center gap-1 mt-2 opacity-80">
|
2025-03-19 10:49:36 +00:00
|
|
|
{formatDateToIndonesian(new Date(list?.createdAt))}{" "}
|
2025-04-06 13:26:35 +00:00
|
|
|
{list?.timezone || "WIB"} |{" "}
|
2025-03-19 10:49:36 +00:00
|
|
|
<svg
|
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
2025-04-06 13:26:35 +00:00
|
|
|
width="1em"
|
|
|
|
|
height="1em"
|
2025-03-19 10:49:36 +00:00
|
|
|
viewBox="0 0 24 24"
|
2025-04-06 13:26:35 +00:00
|
|
|
className="inline-block"
|
2025-03-19 10:49:36 +00:00
|
|
|
>
|
2025-01-15 15:59:19 +00:00
|
|
|
<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"
|
|
|
|
|
/>
|
2025-04-06 13:26:35 +00:00
|
|
|
</svg>
|
|
|
|
|
{list?.clickCount}
|
2025-01-15 15:59:19 +00:00
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</CarouselItem>
|
|
|
|
|
))}
|
|
|
|
|
</CarouselContent>
|
2025-02-20 09:31:43 +00:00
|
|
|
<CarouselPrevious className="hover:bg-black ml-1 lg:ml-0" />
|
|
|
|
|
<CarouselNext className="hover:bg-black mr-1 lg:mr-0" />
|
2025-01-15 15:59:19 +00:00
|
|
|
</Carousel>
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
{isLoading ? (
|
|
|
|
|
<>
|
|
|
|
|
<div className="flex items-center gap-4 max-w-sm mx-auto mb-3">
|
|
|
|
|
<Skeleton className="h-[73px] w-16 rounded-md" />
|
|
|
|
|
<div className="space-y-2">
|
|
|
|
|
<Skeleton className="h-4 w-[250px]" />
|
|
|
|
|
<Skeleton className="h-4 w-[200px]" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-01-31 12:51:04 +00:00
|
|
|
<div className="items-center hidden md:block gap-4 max-w-sm mx-auto mb-3 lg:flex">
|
2025-01-15 15:59:19 +00:00
|
|
|
<Skeleton className="h-[73px] w-16 rounded-md" />
|
|
|
|
|
<div className="space-y-2">
|
|
|
|
|
<Skeleton className="h-4 w-[250px]" />
|
|
|
|
|
<Skeleton className="h-4 w-[200px]" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-01-31 12:51:04 +00:00
|
|
|
<div className="hidden md:block items-center gap-4 max-w-sm mx-auto mb-3 lg:flex">
|
2025-01-15 15:59:19 +00:00
|
|
|
<Skeleton className="h-[73px] w-16 rounded-md" />
|
|
|
|
|
<div className="space-y-2">
|
|
|
|
|
<Skeleton className="h-4 w-[250px]" />
|
|
|
|
|
<Skeleton className="h-4 w-[200px]" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-01-31 12:51:04 +00:00
|
|
|
<div className="hidden md:block items-center gap-4 max-w-sm mx-auto mb-3 lg:flex">
|
2025-01-15 15:59:19 +00:00
|
|
|
<Skeleton className="h-[73px] w-16 rounded-md" />
|
|
|
|
|
<div className="space-y-2">
|
|
|
|
|
<Skeleton className="h-4 w-[250px]" />
|
|
|
|
|
<Skeleton className="h-4 w-[200px]" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-01-31 12:51:04 +00:00
|
|
|
<div className="hidden md:block items-center gap-4 max-w-sm mx-auto lg:flex">
|
2025-01-15 15:59:19 +00:00
|
|
|
<Skeleton className="h-[73px] w-16 rounded-md" />
|
|
|
|
|
<div className="space-y-2">
|
|
|
|
|
<Skeleton className="h-4 w-[250px]" />
|
|
|
|
|
<Skeleton className="h-4 w-[200px]" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</>
|
|
|
|
|
) : (
|
2025-04-16 06:28:10 +00:00
|
|
|
<ul className="py-4 lg:py-0 flex flex-row lg:flex-col gap-4 flex-nowrap w-[95vw] lg:w-auto">
|
2025-04-06 13:26:35 +00:00
|
|
|
<Tabs defaultValue="national" className="w-[350px]">
|
2025-04-13 12:30:26 +00:00
|
|
|
<TabsList className="grid w-full grid-cols-3 border">
|
2025-04-06 13:26:35 +00:00
|
|
|
<TabsTrigger value="national">Nasional</TabsTrigger>
|
|
|
|
|
<TabsTrigger value="polda">Polda</TabsTrigger>
|
|
|
|
|
<TabsTrigger value="satker">Satker</TabsTrigger>
|
|
|
|
|
</TabsList>
|
|
|
|
|
<TabsContent value="national">
|
|
|
|
|
{heroData?.map((item: any) => (
|
2025-04-13 12:30:26 +00:00
|
|
|
<li
|
|
|
|
|
key={item?.id}
|
|
|
|
|
className="flex gap-4 flex-row lg:w-full mx-2"
|
|
|
|
|
>
|
2025-04-06 13:26:35 +00:00
|
|
|
<div className="flex-shrink-0 w-24 rounded-lg">
|
|
|
|
|
<Image
|
|
|
|
|
placeholder={`data:image/svg+xml;base64,${toBase64(
|
|
|
|
|
shimmer(700, 475)
|
|
|
|
|
)}`}
|
|
|
|
|
width={720}
|
|
|
|
|
height={480}
|
|
|
|
|
src={item?.thumbnailLink}
|
|
|
|
|
alt={item?.title}
|
|
|
|
|
className="w-full h-[73px] object-cover rounded-lg"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
2025-05-15 10:18:33 +00:00
|
|
|
<div className="w-[280px] lg:w-[200px]">
|
2025-04-06 13:26:35 +00:00
|
|
|
<span className="text-white bg-[#bb3523] px-4 py-1 rounded-lg flex text-[8px] font-bold uppercase w-fit">
|
|
|
|
|
{item?.categoryName}
|
|
|
|
|
</span>
|
|
|
|
|
<Link href={`${locale}/image/detail/${item?.slug}`}>
|
|
|
|
|
<h3 className="text-base font-bold mt-2 h-6 hover:h-auto truncate hover:whitespace-normal hover:overflow-visible">
|
|
|
|
|
{item?.title}
|
|
|
|
|
</h3>
|
|
|
|
|
</Link>
|
|
|
|
|
<p className="text-[10px] flex flex-row items-center gap-1 text-gray-500 mt-1">
|
|
|
|
|
{formatDateToIndonesian(new Date(item?.createdAt))}{" "}
|
|
|
|
|
{item?.timezone ? 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>
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
|
|
|
|
))}
|
|
|
|
|
</TabsContent>
|
|
|
|
|
<TabsContent value="polda">
|
|
|
|
|
{heroData
|
|
|
|
|
?.filter((item: any) => item.isPublishOnPolda === true)
|
2025-05-21 15:06:56 +00:00
|
|
|
|
2025-04-06 13:26:35 +00:00
|
|
|
.map((item: any, index: any) => (
|
|
|
|
|
<li
|
|
|
|
|
key={item?.id}
|
2025-04-13 12:30:26 +00:00
|
|
|
className="flex gap-4 flex-row lg:w-full mx-2"
|
2025-03-19 13:56:51 +00:00
|
|
|
>
|
2025-04-06 13:26:35 +00:00
|
|
|
<div className="flex-shrink-0 w-24 rounded-lg">
|
|
|
|
|
<Image
|
|
|
|
|
placeholder={`data:image/svg+xml;base64,${toBase64(
|
|
|
|
|
shimmer(700, 475)
|
|
|
|
|
)}`}
|
|
|
|
|
width={720}
|
|
|
|
|
height={480}
|
|
|
|
|
src={item?.thumbnailLink}
|
|
|
|
|
alt={item?.title}
|
|
|
|
|
className="w-full h-[73px] object-cover rounded-lg"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
2025-05-15 10:18:33 +00:00
|
|
|
<div className="w-[280px] lg:w-[200px]">
|
2025-04-06 13:26:35 +00:00
|
|
|
<span className="text-white bg-[#bb3523] px-4 py-1 rounded-lg flex text-[8px] font-bold uppercase w-fit">
|
|
|
|
|
{item?.categoryName}
|
|
|
|
|
</span>
|
|
|
|
|
<Link href={`${locale}/image/detail/${item?.slug}`}>
|
|
|
|
|
<h3 className="text-base font-bold mt-2 h-6 hover:h-auto truncate hover:whitespace-normal hover:overflow-visible">
|
|
|
|
|
{item?.title}
|
|
|
|
|
</h3>
|
|
|
|
|
</Link>
|
|
|
|
|
<p className="text-[10px] flex flex-row items-center gap-1 text-gray-500 mt-1">
|
|
|
|
|
{formatDateToIndonesian(new Date(item?.createdAt))}{" "}
|
|
|
|
|
{item?.timezone ? 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>
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
|
|
|
|
))}
|
|
|
|
|
</TabsContent>
|
|
|
|
|
<TabsContent value="satker">
|
|
|
|
|
{heroData?.map((item: any) => (
|
2025-04-13 12:30:26 +00:00
|
|
|
<li
|
|
|
|
|
key={item?.id}
|
|
|
|
|
className="flex gap-4 flex-row lg:w-full mx-2"
|
|
|
|
|
>
|
2025-04-06 13:26:35 +00:00
|
|
|
<div className="flex-shrink-0 w-24 rounded-lg">
|
|
|
|
|
<Image
|
|
|
|
|
placeholder={`data:image/svg+xml;base64,${toBase64(
|
|
|
|
|
shimmer(700, 475)
|
|
|
|
|
)}`}
|
|
|
|
|
width={720}
|
|
|
|
|
height={480}
|
|
|
|
|
src={item?.thumbnailLink}
|
|
|
|
|
alt={item?.title}
|
|
|
|
|
className="w-full h-[73px] object-cover rounded-lg"
|
2024-12-16 15:50:19 +00:00
|
|
|
/>
|
2025-04-06 13:26:35 +00:00
|
|
|
</div>
|
2025-05-15 10:18:33 +00:00
|
|
|
<div className="w-[280px] lg:w-[200px]">
|
2025-04-06 13:26:35 +00:00
|
|
|
<span className="text-white bg-[#bb3523] px-4 py-1 rounded-lg flex text-[8px] font-bold uppercase w-fit">
|
|
|
|
|
{item?.categoryName}
|
|
|
|
|
</span>
|
|
|
|
|
<Link href={`${locale}/image/detail/${item?.slug}`}>
|
|
|
|
|
<h3 className="text-base font-bold mt-2 h-6 hover:h-auto truncate hover:whitespace-normal hover:overflow-visible">
|
|
|
|
|
{item?.title}
|
|
|
|
|
</h3>
|
|
|
|
|
</Link>
|
|
|
|
|
<p className="text-[10px] flex flex-row items-center gap-1 text-gray-500 mt-1">
|
|
|
|
|
{formatDateToIndonesian(new Date(item?.createdAt))}{" "}
|
|
|
|
|
{item?.timezone ? 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>
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
|
|
|
|
))}
|
|
|
|
|
</TabsContent>
|
|
|
|
|
</Tabs>
|
2025-01-15 15:59:19 +00:00
|
|
|
</ul>
|
|
|
|
|
)}
|
2024-11-26 17:00:20 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default Hero;
|