fix: add indeks content in filter regional

This commit is contained in:
Sabda Yagra 2025-09-11 01:22:35 +07:00
parent bffe869f32
commit e43ede341f
3 changed files with 2519 additions and 1293 deletions

View File

@ -29,6 +29,7 @@ import FilterImageComponent from "@/components/landing-page/filter-all/image-fil
import FilterVideoComponent from "@/components/landing-page/filter-all/video-filter-card"; import FilterVideoComponent from "@/components/landing-page/filter-all/video-filter-card";
import FilterDocumentComponent from "@/components/landing-page/filter-all/document-filter-card"; import FilterDocumentComponent from "@/components/landing-page/filter-all/document-filter-card";
import FilterAudioComponent from "@/components/landing-page/filter-all/audio-filter-card"; import FilterAudioComponent from "@/components/landing-page/filter-all/audio-filter-card";
import FilterIndeksComponent from "@/components/landing-page/filter-all/indeks-filter-card";
import { useTranslations } from "next-intl"; import { useTranslations } from "next-intl";
export default function FilterPage() { export default function FilterPage() {
@ -734,6 +735,13 @@ export default function FilterPage() {
endDateString={endDateString} endDateString={endDateString}
monthYearFilter={monthYearFilter} monthYearFilter={monthYearFilter}
/> />
<FilterIndeksComponent
categoryFilter={categoryFilter}
sortByOpt={sortByOpt}
startDateString={startDateString}
endDateString={endDateString}
monthYearFilter={monthYearFilter}
/>
</div> </div>
</div> </div>
</div> </div>

File diff suppressed because it is too large Load Diff

View File

@ -3214,9 +3214,9 @@ export function getMenuList(pathname: string, t: any): Group[] {
children: [], children: [],
}, },
{ {
href: "/supervisor/ticketing/4", href: "/supervisor/ticketing/3",
label: "Instagram", label: "Instagram",
active: pathname.includes("/ticketing/4"), active: pathname.includes("/ticketing/3"),
icon: "ri:chat-private-line", icon: "ri:chat-private-line",
children: [], children: [],
}, },
@ -3230,73 +3230,73 @@ export function getMenuList(pathname: string, t: any): Group[] {
{ {
href: "/supervisor/ticketing/5", href: "/supervisor/ticketing/5",
label: "Youtube", label: "Youtube",
active: pathname.includes("/ticketing/youtube"), active: pathname.includes("/ticketing/5"),
icon: "ri:share-forward-2-fill", icon: "ri:share-forward-2-fill",
children: [], children: [],
}, },
// {
// href: "/",
// label: "Tiktok",
// active: pathname.includes("/ticketing/tiktok"),
// icon: "ri:share-forward-2-fill",
// children: [],
// },
// {
// href: "/",
// label: "Kolom Komentar",
// active: pathname.includes("/ticketing/comment"),
// icon: "ri:share-forward-2-fill",
// children: [],
// },
// {
// href: "/",
// label: "Hubungi Kami",
// active: pathname.includes("/ticketing/contact-us"),
// icon: "ri:share-forward-2-fill",
// children: [],
// },
// {
// href: "/",
// label: "Play Store",
// active: pathname.includes("/ticketing/play-store"),
// icon: "ri:share-forward-2-fill",
// children: [],
// },
// {
// href: "/",
// label: "App Store",
// active: pathname.includes("/ticketing/app-store"),
// icon: "ri:share-forward-2-fill",
// children: [],
// },
// {
// href: "/",
// label: "Web Humas",
// active: pathname.includes("/ticketing/web-humas"),
// icon: "ri:share-forward-2-fill",
// children: [],
// },
// {
// href: "/",
// label: "e-PPID",
// active: pathname.includes("/ticketing/e-ppid"),
// icon: "ri:share-forward-2-fill",
// children: [],
// },
{ {
href: "/", href: "/supervisor/ticketing/6",
label: "Tiktok",
active: pathname.includes("/ticketing/tiktok"),
icon: "ri:share-forward-2-fill",
children: [],
},
{
href: "/",
label: "Kolom Komentar",
active: pathname.includes("/ticketing/comment"),
icon: "ri:share-forward-2-fill",
children: [],
},
{
href: "/",
label: "Hubungi Kami",
active: pathname.includes("/ticketing/contact-us"),
icon: "ri:share-forward-2-fill",
children: [],
},
{
href: "/",
label: "Play Store",
active: pathname.includes("/ticketing/play-store"),
icon: "ri:share-forward-2-fill",
children: [],
},
{
href: "/",
label: "App Store",
active: pathname.includes("/ticketing/app-store"),
icon: "ri:share-forward-2-fill",
children: [],
},
{
href: "/",
label: "Web Humas",
active: pathname.includes("/ticketing/web-humas"),
icon: "ri:share-forward-2-fill",
children: [],
},
{
href: "/",
label: "e-PPID",
active: pathname.includes("/ticketing/e-ppid"),
icon: "ri:share-forward-2-fill",
children: [],
},
{
href: "/",
label: "Emergency Issues", label: "Emergency Issues",
active: pathname.includes("/ticketing/emergency-issues"), active: pathname.includes("/ticketing/6"),
icon: "ri:share-forward-2-fill",
children: [],
},
{
href: "/",
label: "Campaignpool",
active: pathname.includes("/ticketing/campaignpool"),
icon: "ri:share-forward-2-fill", icon: "ri:share-forward-2-fill",
children: [], children: [],
}, },
// {
// href: "/",
// label: "Campaignpool",
// active: pathname.includes("/ticketing/campaignpool"),
// icon: "ri:share-forward-2-fill",
// children: [],
// },
], ],
}, },
], ],