2025-05-21 15:06:56 +00:00
|
|
|
import { useTranslations } from "next-intl";
|
2025-06-30 03:52:44 +00:00
|
|
|
import { useParams } from "next/navigation";
|
2025-05-21 15:06:56 +00:00
|
|
|
import router from "next/router";
|
|
|
|
|
import React, { useEffect, useState } from "react";
|
|
|
|
|
import { Icon } from "@iconify/react/dist/iconify.js";
|
2025-06-21 13:17:25 +00:00
|
|
|
import {
|
|
|
|
|
Select,
|
|
|
|
|
SelectContent,
|
|
|
|
|
SelectGroup,
|
|
|
|
|
SelectItem,
|
|
|
|
|
SelectTrigger,
|
|
|
|
|
SelectValue,
|
|
|
|
|
} from "../ui/select";
|
2025-05-21 15:06:56 +00:00
|
|
|
import Image from "next/image";
|
|
|
|
|
import { getHeroData } from "@/service/landing/landing";
|
|
|
|
|
import { title } from "process";
|
|
|
|
|
import { htmlToString } from "@/utils/globals";
|
2025-06-30 03:52:44 +00:00
|
|
|
import { Link, useRouter } from "@/i18n/routing";
|
2025-06-05 02:48:13 +00:00
|
|
|
import { Button } from "../ui/button";
|
2025-05-21 15:06:56 +00:00
|
|
|
|
|
|
|
|
const ScrollableContent = () => {
|
|
|
|
|
const [contentType, setContentType] = useState("all");
|
|
|
|
|
const [search, setSearch] = useState("");
|
2025-06-05 02:48:13 +00:00
|
|
|
const [seeAllValueSatker, setSeeAllValueSatker] = useState(false);
|
|
|
|
|
const [seeAllValuePolda, setSeeAllValuePolda] = useState(false);
|
2025-05-21 15:06:56 +00:00
|
|
|
const router = useRouter();
|
|
|
|
|
const params = useParams();
|
|
|
|
|
const locale = params?.locale;
|
|
|
|
|
const t = useTranslations("LandingPage");
|
2025-06-21 13:17:25 +00:00
|
|
|
const [contentPolda, setContentPolda] = useState<any>();
|
|
|
|
|
const [contentSatker, setContentSatker] = useState<any>();
|
|
|
|
|
const poldaName = params?.polda_name;
|
|
|
|
|
const satkerName = params?.satker_name;
|
|
|
|
|
|
|
|
|
|
let prefixPath = poldaName
|
|
|
|
|
? `/polda/${poldaName}`
|
|
|
|
|
: satkerName
|
|
|
|
|
? `/satker/${satkerName}`
|
|
|
|
|
: "";
|
2025-06-11 03:47:52 +00:00
|
|
|
|
2025-05-21 15:06:56 +00:00
|
|
|
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();
|
2025-06-21 13:17:25 +00:00
|
|
|
initFetchPolda();
|
|
|
|
|
initFetchSatker();
|
2025-05-21 15:06:56 +00:00
|
|
|
}, []);
|
|
|
|
|
|
2025-06-21 13:17:25 +00:00
|
|
|
const initFetchPolda = async () => {
|
|
|
|
|
const response = await getHeroData(locale == "en", "polda");
|
|
|
|
|
console.log(response);
|
|
|
|
|
let data = response?.data?.data?.content;
|
|
|
|
|
|
|
|
|
|
setContentPolda(data);
|
|
|
|
|
};
|
2025-06-23 12:15:31 +00:00
|
|
|
|
2025-06-21 13:17:25 +00:00
|
|
|
const initFetchSatker = async () => {
|
|
|
|
|
const response = await getHeroData(locale == "en", "satker");
|
2025-05-21 15:06:56 +00:00
|
|
|
console.log(response);
|
|
|
|
|
let data = response?.data?.data?.content;
|
|
|
|
|
|
2025-06-21 13:17:25 +00:00
|
|
|
setContentSatker(data);
|
2025-05-21 15:06:56 +00:00
|
|
|
};
|
2025-06-11 03:47:52 +00:00
|
|
|
|
2025-05-21 15:06:56 +00:00
|
|
|
return (
|
|
|
|
|
<>
|
2025-06-23 12:15:31 +00:00
|
|
|
<div className="w-full">
|
|
|
|
|
<h1 className="text-[18px] md:text-3xl font-bold text-gray-800 dark:text-white">
|
2025-06-02 01:00:01 +00:00
|
|
|
<span className="text-[#c03724] dark:text-white">
|
2025-07-07 15:15:24 +00:00
|
|
|
{t("exploration", { defaultValue: "Exploration" })}
|
|
|
|
|
{t("and", { defaultValue: "And" })}
|
2025-06-02 01:00:01 +00:00
|
|
|
</span>
|
|
|
|
|
<span className="text-[#c03724] dark:text-white">
|
2025-07-07 15:15:24 +00:00
|
|
|
{t("download", { defaultValue: "Download" })}
|
|
|
|
|
{t("coverage", { defaultValue: "Coverage" })}
|
2025-05-21 15:06:56 +00:00
|
|
|
</span>{" "}
|
|
|
|
|
</h1>
|
2025-06-02 01:00:01 +00:00
|
|
|
<div className="w-[10%] h-1 bg-[#bb3523] mt-2"></div>
|
|
|
|
|
<div className="w-full h-1 bg-[#bb3523] mx-auto"></div>
|
2025-06-21 13:17:25 +00:00
|
|
|
<p className="text-sm md:text-base text-black dark:text-gray-100 mt-4">
|
2025-07-06 09:23:45 +00:00
|
|
|
{t("officialCoverage", { defaultValue: "Official Coverage" })}
|
2025-06-21 13:17:25 +00:00
|
|
|
</p>
|
2025-05-21 15:06:56 +00:00
|
|
|
|
|
|
|
|
<div className="mt-6 flex flex-col md:flex-row justify-center gap-4">
|
|
|
|
|
<div className="flex flex-row items-center w-full rounded-lg gap-2 overflow-hidden">
|
|
|
|
|
<Select value={contentType} onValueChange={setContentType}>
|
2025-06-02 01:00:01 +00:00
|
|
|
<SelectTrigger className="w-[180px] h-[55px]">
|
|
|
|
|
<span className="text-black">
|
2025-06-21 13:17:25 +00:00
|
|
|
<svg
|
|
|
|
|
className="mx-2 dark:"
|
|
|
|
|
width="25"
|
|
|
|
|
height="24"
|
|
|
|
|
viewBox="0 0 25 24"
|
|
|
|
|
fill="none"
|
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
|
>
|
2025-06-02 01:00:01 +00:00
|
|
|
<path
|
|
|
|
|
d="M20 7.5H5C4.6023 7.5004 4.221 7.65856 3.93978 7.93978C3.65856 8.221 3.5004 8.6023 3.5 9V19.5C3.5004 19.8977 3.65856 20.279 3.93978 20.5602C4.221 20.8414 4.6023 20.9996 5 21H20C20.3977 20.9996 20.779 20.8414 21.0602 20.5602C21.3414 20.279 21.4996 19.8977 21.5 19.5V9C21.4996 8.6023 21.3414 8.221 21.0602 7.93978C20.779 7.65856 20.3977 7.5004 20 7.5ZM10.25 17.25V11.25L15.5 14.25L10.25 17.25ZM5 4.5H20V6H5V4.5ZM6.5 1.5H18.5V3H6.5V1.5Z"
|
|
|
|
|
fill="currentColor"
|
|
|
|
|
/>
|
|
|
|
|
</svg>
|
|
|
|
|
</span>
|
2025-05-21 15:06:56 +00:00
|
|
|
<SelectValue />
|
|
|
|
|
</SelectTrigger>
|
|
|
|
|
<SelectContent>
|
|
|
|
|
<SelectGroup>
|
2025-07-07 15:15:24 +00:00
|
|
|
<SelectItem value="all">
|
|
|
|
|
{t("allContent", { defaultValue: "All Content" })}
|
|
|
|
|
</SelectItem>
|
|
|
|
|
<SelectItem value="image">
|
|
|
|
|
{t("image", { defaultValue: "Image" })}
|
|
|
|
|
</SelectItem>
|
|
|
|
|
<SelectItem value="video">
|
|
|
|
|
{t("video", { defaultValue: "Video" })}
|
|
|
|
|
</SelectItem>
|
|
|
|
|
<SelectItem value="document">
|
|
|
|
|
{t("text", { defaultValue: "Text" })}
|
|
|
|
|
</SelectItem>
|
|
|
|
|
<SelectItem value="audio">
|
|
|
|
|
{t("audio", { defaultValue: "Audio" })}
|
|
|
|
|
</SelectItem>
|
2025-05-21 15:06:56 +00:00
|
|
|
</SelectGroup>
|
|
|
|
|
</SelectContent>
|
|
|
|
|
</Select>
|
|
|
|
|
<div className="flex items-center flex-1 border border-gray-300 rounded-lg overflow-hidden">
|
|
|
|
|
<span className="material-icons text-black dark:text-white px-4">
|
2025-06-21 13:17:25 +00:00
|
|
|
<svg
|
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
|
width="1em"
|
|
|
|
|
height="1em"
|
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
|
>
|
2025-05-21 15:06:56 +00:00
|
|
|
<path
|
|
|
|
|
fill="currentColor"
|
|
|
|
|
d="m19.6 21l-6.3-6.3q-.75.6-1.725.95T9.5 16q-2.725 0-4.612-1.888T3 9.5t1.888-4.612T9.5 3t4.613 1.888T16 9.5q0 1.1-.35 2.075T14.7 13.3l6.3 6.3zM9.5 14q1.875 0 3.188-1.312T14 9.5t-1.312-3.187T9.5 5T6.313 6.313T5 9.5t1.313 3.188T9.5 14"
|
|
|
|
|
/>
|
|
|
|
|
</svg>
|
|
|
|
|
</span>
|
2025-06-21 13:17:25 +00:00
|
|
|
<input
|
|
|
|
|
type="text"
|
2025-07-07 15:15:24 +00:00
|
|
|
placeholder={t("searchCoverageHere", {
|
|
|
|
|
defaultValue: "Search Coverage Here",
|
|
|
|
|
})}
|
2025-06-21 13:17:25 +00:00
|
|
|
className="w-full py-4 px-2 text-sm text-gray-700 dark:text-gray-100 focus:outline-none"
|
|
|
|
|
onChange={(e) => setSearch(e.target.value)}
|
|
|
|
|
/>
|
2025-05-21 15:06:56 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-06-21 13:17:25 +00:00
|
|
|
<button
|
|
|
|
|
onClick={() =>
|
2025-07-07 15:15:24 +00:00
|
|
|
router.push(prefixPath + `/${contentType}/filter?title=${search}`)
|
2025-06-21 13:17:25 +00:00
|
|
|
}
|
2025-06-23 12:15:31 +00:00
|
|
|
className="flex justify-center items-center px-6 w-full lg:w-[20%] py-4 bg-[#bb3523] gap-2 text-white rounded-lg hover:bg-red-700 text-[14px]"
|
2025-06-21 13:17:25 +00:00
|
|
|
>
|
2025-07-06 09:23:45 +00:00
|
|
|
{t("searchCoverage", { defaultValue: "Search Coverage" })}
|
2025-05-21 15:06:56 +00:00
|
|
|
<Icon icon="ri:arrow-right-s-line" fontSize={20} />
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="flex flex-col md:flex-row gap-6 py-8">
|
2025-06-02 01:00:01 +00:00
|
|
|
{/* Berita Polda */}
|
2025-06-23 12:15:31 +00:00
|
|
|
{locale === "in" && (
|
|
|
|
|
<div className="w-full md:w-1/2 px-0 lg:px-4">
|
|
|
|
|
<h2 className="text-lg md:text-xl font-bold text-[#bb3523] mb-2 uppercase">
|
2025-07-06 09:23:45 +00:00
|
|
|
{t("regionNews", { defaultValue: "Region News" })}
|
2025-06-23 12:15:31 +00:00
|
|
|
</h2>
|
|
|
|
|
<div className="w-[10%] h-1 bg-[#bb3523]"></div>
|
|
|
|
|
<div className="w-full h-1 bg-[#bb3523] mx-auto mb-4"></div>
|
|
|
|
|
<div className="grid gap-4">
|
|
|
|
|
{(seeAllValuePolda
|
|
|
|
|
? contentPolda
|
|
|
|
|
: contentPolda?.slice(0, 3)
|
|
|
|
|
)?.map((item: any, index: number) => (
|
2025-06-21 13:17:25 +00:00
|
|
|
<div
|
|
|
|
|
key={index}
|
|
|
|
|
className={`bg-white rounded-lg shadow-md overflow-hidden ${
|
|
|
|
|
index === 0 ? "" : "flex"
|
|
|
|
|
}`}
|
|
|
|
|
>
|
|
|
|
|
<div
|
|
|
|
|
className={`relative ${
|
|
|
|
|
index === 0 ? "w-full h-48" : " w-1/2 h-[150px]"
|
|
|
|
|
}`}
|
|
|
|
|
>
|
|
|
|
|
<Link
|
|
|
|
|
href={
|
|
|
|
|
Number(item?.fileTypeId) == 1
|
|
|
|
|
? `${prefixPath}/image/detail/${item?.slug}`
|
|
|
|
|
: Number(item?.fileTypeId) == 2
|
|
|
|
|
? `${prefixPath}/video/detail/${item?.slug}`
|
|
|
|
|
: Number(item?.fileTypeId) == 3
|
|
|
|
|
? `${prefixPath}/document/detail/${item?.slug}`
|
|
|
|
|
: `${prefixPath}/audio/detail/${item?.slug}`
|
|
|
|
|
}
|
|
|
|
|
>
|
|
|
|
|
<Image
|
2025-07-07 15:15:24 +00:00
|
|
|
priority={true}
|
2025-06-21 13:17:25 +00:00
|
|
|
src={item?.smallThumbnailLink}
|
|
|
|
|
alt={item?.title}
|
2025-07-07 15:15:24 +00:00
|
|
|
fill
|
2025-06-21 13:17:25 +00:00
|
|
|
objectFit="cover"
|
|
|
|
|
/>
|
|
|
|
|
<div className="absolute top-2 right-2 bg-[#c03724] rounded-full p-1 shadow">
|
|
|
|
|
<svg
|
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
|
width="24"
|
|
|
|
|
height="24"
|
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
|
>
|
|
|
|
|
<g fill="none">
|
|
|
|
|
<path d="m12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z" />
|
|
|
|
|
<path
|
|
|
|
|
fill="white"
|
|
|
|
|
d="M20 6a2 2 0 0 1 2 2v11.333a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2zm-8.268 7.944L7.136 18.54l-.066.06l-.07.054v.68h13v-.68l-.07-.053l-.066-.06l-2.24-2.24l-.353.354l.055.055a1 1 0 0 1-1.32 1.497l-.094-.083zM17 3a2 2 0 0 1 1.995 1.85L19 5H5a1 1 0 0 0-.993.883L4 6v12a2 2 0 0 1-1.995-1.85L2 16V6a3 3 0 0 1 2.824-2.995L5 3zm3 5H7v7.848L10.848 12a1.25 1.25 0 0 1 1.768 0l3.241 3.24l.884-.883a1.25 1.25 0 0 1 1.768 0L20 15.848zm-3.5 1.5a1.5 1.5 0 1 1 0 3a1.5 1.5 0 0 1 0-3"
|
|
|
|
|
/>
|
|
|
|
|
</g>
|
|
|
|
|
</svg>
|
|
|
|
|
</div>
|
|
|
|
|
</Link>
|
|
|
|
|
</div>
|
2025-05-21 15:06:56 +00:00
|
|
|
<Link
|
|
|
|
|
href={
|
|
|
|
|
Number(item?.fileTypeId) == 1
|
2025-06-21 13:17:25 +00:00
|
|
|
? `${prefixPath}/image/detail/${item?.slug}`
|
2025-05-21 15:06:56 +00:00
|
|
|
: Number(item?.fileTypeId) == 2
|
2025-06-21 13:17:25 +00:00
|
|
|
? `${prefixPath}/video/detail/${item?.slug}`
|
2025-05-21 15:06:56 +00:00
|
|
|
: Number(item?.fileTypeId) == 3
|
2025-06-21 13:17:25 +00:00
|
|
|
? `${prefixPath}/document/detail/${item?.slug}`
|
|
|
|
|
: `${prefixPath}/audio/detail/${item?.slug}`
|
2025-05-21 15:06:56 +00:00
|
|
|
}
|
2025-06-21 13:17:25 +00:00
|
|
|
className={`${
|
|
|
|
|
index === 0 ? "p-4" : "p-3 w-[50%] cursor-pointer"
|
|
|
|
|
}`}
|
2025-05-21 15:06:56 +00:00
|
|
|
>
|
2025-06-23 12:15:31 +00:00
|
|
|
<p className="text-sm text-[#bb3523] font-bold mb-1 px-2">
|
2025-06-21 13:17:25 +00:00
|
|
|
{item.categoryName}
|
|
|
|
|
</p>
|
2025-06-23 12:15:31 +00:00
|
|
|
<h3 className="text-sm font-semibold text-gray-800 px-2">
|
2025-06-21 13:17:25 +00:00
|
|
|
{item.title}
|
|
|
|
|
</h3>
|
2025-06-23 12:15:31 +00:00
|
|
|
<p className="text-xs text-gray-500 mt-1 truncate px-2">
|
2025-06-21 13:17:25 +00:00
|
|
|
{htmlToString(item.description)}
|
|
|
|
|
</p>
|
2025-05-21 15:06:56 +00:00
|
|
|
</Link>
|
|
|
|
|
</div>
|
2025-06-23 12:15:31 +00:00
|
|
|
))}
|
|
|
|
|
{contentPolda?.length > 3 && (
|
|
|
|
|
<div className="flex items-center flex-row justify-start mt-6">
|
|
|
|
|
<Button
|
|
|
|
|
onClick={() => setSeeAllValuePolda(!seeAllValuePolda)}
|
|
|
|
|
className="bg-white hover:bg-[#bb3523] text-[#bb3523] hover:text-white border-2 border-[#bb3523]"
|
|
|
|
|
>
|
2025-07-07 15:15:24 +00:00
|
|
|
{seeAllValuePolda
|
|
|
|
|
? t("seeLess", { defaultValue: "See Less" })
|
|
|
|
|
: t("seeMore", { defaultValue: "See More" })}{" "}
|
2025-06-23 12:15:31 +00:00
|
|
|
<span className="text-[#bb3523] hover:text-white">
|
|
|
|
|
<svg
|
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
|
width="24"
|
|
|
|
|
height="24"
|
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
|
>
|
|
|
|
|
<path
|
|
|
|
|
fill="none"
|
|
|
|
|
stroke="currentColor"
|
|
|
|
|
strokeLinecap="round"
|
|
|
|
|
strokeLinejoin="round"
|
|
|
|
|
strokeWidth="2.5"
|
|
|
|
|
d="m10 17l5-5m0 0l-5-5"
|
|
|
|
|
/>
|
|
|
|
|
</svg>
|
|
|
|
|
</span>
|
|
|
|
|
</Button>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
2025-05-21 15:06:56 +00:00
|
|
|
</div>
|
2025-06-23 12:15:31 +00:00
|
|
|
)}
|
2025-05-21 15:06:56 +00:00
|
|
|
|
|
|
|
|
{/* Berita SATKER */}
|
2025-06-23 12:15:31 +00:00
|
|
|
{locale === "in" && (
|
|
|
|
|
<div className="w-full md:w-1/2 px-0 lg:px-4">
|
|
|
|
|
<h2 className="text-lg md:text-xl font-bold mb-2 text-[#bb3523] uppercase">
|
2025-07-06 09:23:45 +00:00
|
|
|
{t("divisionNews", { defaultValue: "Division News" })}
|
2025-06-23 12:15:31 +00:00
|
|
|
</h2>
|
|
|
|
|
<div className="w-[10%] h-1 bg-[#bb3523]"></div>
|
|
|
|
|
<div className="w-full h-1 bg-[#bb3523] mx-auto mb-4"></div>
|
|
|
|
|
<div className="grid gap-4">
|
|
|
|
|
{(seeAllValueSatker
|
|
|
|
|
? contentSatker
|
|
|
|
|
: contentSatker?.slice(0, 3)
|
|
|
|
|
)?.map((item: any, index: number) => (
|
|
|
|
|
<div
|
|
|
|
|
key={index}
|
|
|
|
|
className={`bg-white rounded-lg shadow-md overflow-hidden ${
|
|
|
|
|
index === 0 ? "" : "flex"
|
|
|
|
|
}`}
|
|
|
|
|
>
|
|
|
|
|
<div
|
|
|
|
|
className={`relative ${
|
|
|
|
|
index === 0 ? "w-full h-48" : " w-1/2 h-[150px]"
|
|
|
|
|
}`}
|
|
|
|
|
>
|
2025-05-21 15:06:56 +00:00
|
|
|
<Link
|
|
|
|
|
href={
|
|
|
|
|
Number(item?.fileTypeId) == 1
|
2025-06-21 13:17:25 +00:00
|
|
|
? `${prefixPath}/image/detail/${item?.slug}`
|
2025-05-21 15:06:56 +00:00
|
|
|
: Number(item?.fileTypeId) == 2
|
2025-06-21 13:17:25 +00:00
|
|
|
? `${prefixPath}/video/detail/${item?.slug}`
|
2025-05-21 15:06:56 +00:00
|
|
|
: Number(item?.fileTypeId) == 3
|
2025-06-21 13:17:25 +00:00
|
|
|
? `${prefixPath}/document/detail/${item?.slug}`
|
|
|
|
|
: `${prefixPath}/audio/detail/${item?.slug}`
|
2025-05-21 15:06:56 +00:00
|
|
|
}
|
|
|
|
|
>
|
2025-06-23 12:15:31 +00:00
|
|
|
<Image
|
2025-07-07 15:15:24 +00:00
|
|
|
priority={true}
|
2025-06-23 12:15:31 +00:00
|
|
|
src={item?.smallThumbnailLink}
|
|
|
|
|
alt={item?.title}
|
2025-07-07 15:15:24 +00:00
|
|
|
fill
|
2025-06-23 12:15:31 +00:00
|
|
|
objectFit="cover"
|
|
|
|
|
/>
|
2025-06-02 01:00:01 +00:00
|
|
|
<div className="absolute top-2 right-2 bg-[#c03724] rounded-full p-1 shadow">
|
2025-06-23 12:15:31 +00:00
|
|
|
<svg
|
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
|
width="24"
|
|
|
|
|
height="24"
|
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
|
>
|
2025-06-02 01:00:01 +00:00
|
|
|
<g fill="none">
|
|
|
|
|
<path d="m12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z" />
|
|
|
|
|
<path
|
|
|
|
|
fill="white"
|
|
|
|
|
d="M20 6a2 2 0 0 1 2 2v11.333a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2zm-8.268 7.944L7.136 18.54l-.066.06l-.07.054v.68h13v-.68l-.07-.053l-.066-.06l-2.24-2.24l-.353.354l.055.055a1 1 0 0 1-1.32 1.497l-.094-.083zM17 3a2 2 0 0 1 1.995 1.85L19 5H5a1 1 0 0 0-.993.883L4 6v12a2 2 0 0 1-1.995-1.85L2 16V6a3 3 0 0 1 2.824-2.995L5 3zm3 5H7v7.848L10.848 12a1.25 1.25 0 0 1 1.768 0l3.241 3.24l.884-.883a1.25 1.25 0 0 1 1.768 0L20 15.848zm-3.5 1.5a1.5 1.5 0 1 1 0 3a1.5 1.5 0 0 1 0-3"
|
|
|
|
|
/>
|
|
|
|
|
</g>
|
2025-05-21 15:06:56 +00:00
|
|
|
</svg>
|
|
|
|
|
</div>
|
|
|
|
|
</Link>
|
|
|
|
|
</div>
|
2025-06-05 02:48:13 +00:00
|
|
|
<Link
|
|
|
|
|
href={
|
|
|
|
|
Number(item?.fileTypeId) == 1
|
2025-06-21 13:17:25 +00:00
|
|
|
? `${prefixPath}/image/detail/${item?.slug}`
|
2025-06-05 02:48:13 +00:00
|
|
|
: Number(item?.fileTypeId) == 2
|
2025-06-21 13:17:25 +00:00
|
|
|
? `${prefixPath}/video/detail/${item?.slug}`
|
2025-06-05 02:48:13 +00:00
|
|
|
: Number(item?.fileTypeId) == 3
|
2025-06-21 13:17:25 +00:00
|
|
|
? `${prefixPath}/document/detail/${item?.slug}`
|
|
|
|
|
: `${prefixPath}/audio/detail/${item?.slug}`
|
2025-06-05 02:48:13 +00:00
|
|
|
}
|
2025-06-23 12:15:31 +00:00
|
|
|
className={`${index === 0 ? "p-4" : "p-3 w-[50%]"}`}
|
2025-06-05 02:48:13 +00:00
|
|
|
>
|
2025-06-23 12:15:31 +00:00
|
|
|
<p className="text-sm text-[#bb3523] font-bold mb-1 px-2">
|
|
|
|
|
{item.categoryName}
|
|
|
|
|
</p>
|
|
|
|
|
<h3 className="text-sm font-semibold text-gray-800 px-2">
|
|
|
|
|
{item.title}
|
|
|
|
|
</h3>
|
|
|
|
|
<p className="text-xs text-gray-500 mt-1 truncate px-2">
|
|
|
|
|
{htmlToString(item.description)}
|
|
|
|
|
</p>
|
|
|
|
|
</Link>
|
|
|
|
|
</div>
|
|
|
|
|
))}
|
|
|
|
|
{/* Tombol See More / See Less */}
|
|
|
|
|
{contentSatker?.length > 3 && (
|
|
|
|
|
<div className="flex items-center flex-row justify-start mt-6">
|
|
|
|
|
<Button
|
|
|
|
|
onClick={() => setSeeAllValueSatker(!seeAllValueSatker)}
|
|
|
|
|
className="bg-white hover:bg-[#bb3523] text-[#bb3523] hover:text-white border-2 border-[#bb3523]"
|
|
|
|
|
>
|
2025-07-07 15:15:24 +00:00
|
|
|
{seeAllValueSatker
|
|
|
|
|
? t("seeLess", { defaultValue: "See Less" })
|
|
|
|
|
: t("seeMore", { defaultValue: "See More" })}{" "}
|
2025-06-23 12:15:31 +00:00
|
|
|
<span className="text-[#bb3523] hover:text-white">
|
2025-06-21 13:17:25 +00:00
|
|
|
<svg
|
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
|
width="24"
|
|
|
|
|
height="24"
|
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
|
>
|
2025-06-23 12:15:31 +00:00
|
|
|
<path
|
|
|
|
|
fill="none"
|
|
|
|
|
stroke="currentColor"
|
|
|
|
|
strokeLinecap="round"
|
|
|
|
|
strokeLinejoin="round"
|
|
|
|
|
strokeWidth="2.5"
|
|
|
|
|
d="m10 17l5-5m0 0l-5-5"
|
|
|
|
|
/>
|
2025-06-05 02:48:13 +00:00
|
|
|
</svg>
|
2025-06-23 12:15:31 +00:00
|
|
|
</span>
|
|
|
|
|
</Button>
|
2025-06-05 02:48:13 +00:00
|
|
|
</div>
|
2025-06-23 12:15:31 +00:00
|
|
|
)}
|
|
|
|
|
</div>
|
2025-05-21 15:06:56 +00:00
|
|
|
</div>
|
2025-06-23 12:15:31 +00:00
|
|
|
)}
|
2025-05-21 15:06:56 +00:00
|
|
|
</div>
|
|
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default ScrollableContent;
|