fix event

deskripsi:
- fix riwayat event
This commit is contained in:
2025-02-21 11:40:15 +08:00
parent e0143c5d8c
commit bb5ca3a0ea
12 changed files with 359 additions and 142 deletions

View File

@@ -1,16 +1,13 @@
import { funGetUserIdByToken } from "@/app_modules/_global/fun/get";
import { Event_DetailMain } from "@/app_modules/event";
import { Event_countTotalPesertaById } from "@/app_modules/event/fun/count/count_total_peserta_by_id";
export default async function Page() {
const userLoginId = await funGetUserIdByToken();
// const totalPeserta = await Event_countTotalPesertaById(eventId);
return (
<>
<Event_DetailMain
userLoginId={userLoginId as string}
// totalPeserta={totalPeserta as any}
/>
</>
);

View File

@@ -1,15 +1,9 @@
import { Event_DetailRiwayat } from "@/app_modules/event";
import { Event_countTotalPesertaById } from "@/app_modules/event/fun/count/count_total_peserta_by_id";
export default async function Page({ params }: { params: { id: string } }) {
let eventId = params.id;
const totalPeserta = await Event_countTotalPesertaById(eventId);
export default async function Page() {
return (
<>
<Event_DetailRiwayat
totalPeserta={totalPeserta as any}
/>
<Event_DetailRiwayat />
</>
);
}

View File

@@ -1,32 +1,9 @@
import { Event_Riwayat } from "@/app_modules/event";
import { event_getListRiwayatSaya } from "@/app_modules/event/fun/get/riwayat/get_list_riwayat_saya";
import { event_getListSemuaRiwayat } from "@/app_modules/event/fun/get/riwayat/get_list_semua_riwayat";
export default async function Page({ params }: { params: { id: string } }) {
let statusRiwayatId = params.id;
const dataSemuaRiwayat = await event_getListSemuaRiwayat({ page: 1 });
const dataRiwayatSaya = await event_getListRiwayatSaya({ page: 1 });
if (statusRiwayatId == "1") {
return (
<>
<Event_Riwayat
statusId={statusRiwayatId}
dataSemuaRiwayat={dataSemuaRiwayat as any}
/>
</>
);
}
if (statusRiwayatId == "2") {
return (
<>
<Event_Riwayat
statusId={statusRiwayatId}
dataRiwayatSaya={dataRiwayatSaya as any}
/>
</>
);
}
export default async function Page() {
return (
<>
<Event_Riwayat />
</>
);
}