# fix : - Tampilan Donasi # feat : - Penambahan App Information ## No Issuee
188 lines
4.9 KiB
TypeScript
188 lines
4.9 KiB
TypeScript
"use client";
|
|
|
|
import { RouterAdminDonasi_OLD } from "@/app/lib/router_hipmi/router_admin";
|
|
import {
|
|
ActionIcon,
|
|
Box,
|
|
Button,
|
|
Center,
|
|
Group,
|
|
Modal,
|
|
Pagination,
|
|
Paper,
|
|
ScrollArea,
|
|
Stack,
|
|
Table,
|
|
Text,
|
|
TextInput,
|
|
Title,
|
|
} from "@mantine/core";
|
|
import { IconChevronLeft, IconEyeCheck, IconSearch } from "@tabler/icons-react";
|
|
import { useRouter } from "next/navigation";
|
|
import ComponentAdminDonasi_TombolKembali from "../component/tombol_kembali";
|
|
import { useDisclosure } from "@mantine/hooks";
|
|
import AdminDonasi_DetailReview from "../detail/detail_review";
|
|
import { MODEL_DONASI } from "@/app_modules/donasi/model/interface";
|
|
import { useState } from "react";
|
|
import TampilanRupiahDonasi from "@/app_modules/donasi/component/tampilan_rupiah";
|
|
import ComponentAdminGlobal_HeaderTamplate from "../../component_global/header_tamplate";
|
|
import _ from "lodash";
|
|
import adminDonasi_getListReview from "../fun/get/get_list_review";
|
|
|
|
export default function AdminDonasi_TableReview({
|
|
listReview,
|
|
}: {
|
|
listReview: MODEL_DONASI[];
|
|
}) {
|
|
return (
|
|
<>
|
|
<Stack h={"100%"}>
|
|
<ComponentAdminGlobal_HeaderTamplate name="Donasi" />
|
|
<TableStatus listReview={listReview} />
|
|
</Stack>
|
|
</>
|
|
);
|
|
}
|
|
|
|
function TableStatus({ listReview }: { listReview: any }) {
|
|
const router = useRouter();
|
|
const [isLoading, setLoading] = useState(false);
|
|
const [idData, setIdData] = useState("");
|
|
const [data, setData] = useState<MODEL_DONASI[]>(listReview.data);
|
|
const [isNPage, setNPage] = useState(listReview.nPage);
|
|
const [isActivePage, setActivePage] = useState(1);
|
|
const [isSearch, setSearch] = useState("");
|
|
|
|
async function onSearch(s: string) {
|
|
setSearch(s);
|
|
const loadData = await adminDonasi_getListReview({
|
|
page: 1,
|
|
search: s,
|
|
});
|
|
setData(loadData.data as any);
|
|
setNPage(loadData.nPage);
|
|
}
|
|
|
|
async function onPageClick(p: any) {
|
|
setActivePage(p);
|
|
const loadData = await adminDonasi_getListReview({
|
|
search: isSearch,
|
|
page: p,
|
|
});
|
|
setData(loadData.data as any);
|
|
setNPage(loadData.nPage);
|
|
}
|
|
|
|
const TableRows = data.map((e, i) => (
|
|
<tr key={i}>
|
|
<td>
|
|
<Center>{e?.Author?.username}</Center>
|
|
</td>
|
|
<td>
|
|
<Center>{e?.title}</Center>
|
|
</td>
|
|
<td>
|
|
<Center>
|
|
<TampilanRupiahDonasi nominal={+e?.target} />
|
|
</Center>
|
|
</td>
|
|
<td>
|
|
<Center>{e?.DonasiMaster_Ketegori.name}</Center>
|
|
</td>
|
|
<td>
|
|
<Center>{e?.DonasiMaster_Durasi.name} hari</Center>
|
|
</td>
|
|
<td>
|
|
<Center>
|
|
<Button
|
|
loaderPosition="center"
|
|
loading={isLoading && e?.id == idData ? true : false}
|
|
color={"orange"}
|
|
leftIcon={<IconEyeCheck />}
|
|
radius={"xl"}
|
|
variant="outline"
|
|
onClick={() => {
|
|
setLoading(true);
|
|
setIdData(e?.id);
|
|
router.push(RouterAdminDonasi_OLD.detail_review + `${e?.id}`);
|
|
}}
|
|
>
|
|
Tampilkan
|
|
</Button>
|
|
</Center>
|
|
</td>
|
|
</tr>
|
|
));
|
|
|
|
return (
|
|
<>
|
|
<Stack spacing={"xs"} h={"100%"}>
|
|
{/* <pre>{JSON.stringify(listUser, null, 2)}</pre> */}
|
|
<Group
|
|
position="apart"
|
|
bg={"orange.4"}
|
|
p={"xs"}
|
|
style={{ borderRadius: "6px" }}
|
|
>
|
|
<Title order={4}>Review</Title>
|
|
<TextInput
|
|
icon={<IconSearch size={20} />}
|
|
radius={"xl"}
|
|
placeholder="Masukan judul"
|
|
onChange={(val) => {
|
|
onSearch(val.currentTarget.value);
|
|
}}
|
|
/>
|
|
</Group>
|
|
|
|
<Paper p={"md"} withBorder shadow="lg" h={"80vh"}>
|
|
<ScrollArea w={"100%"} h={"90%"}>
|
|
<Table
|
|
verticalSpacing={"md"}
|
|
horizontalSpacing={"md"}
|
|
p={"md"}
|
|
w={1500}
|
|
h={"100%"}
|
|
striped
|
|
highlightOnHover
|
|
>
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
<Center>Username</Center>
|
|
</th>
|
|
<th>
|
|
<Center>Judul</Center>
|
|
</th>
|
|
<th>
|
|
<Center>Target</Center>
|
|
</th>
|
|
<th>
|
|
<Center>Ketegori</Center>
|
|
</th>
|
|
<th>
|
|
<Center>Durasi</Center>
|
|
</th>
|
|
<th>
|
|
<Center>Aksi</Center>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>{TableRows}</tbody>
|
|
</Table>
|
|
</ScrollArea>
|
|
<Center mt={"xl"}>
|
|
<Pagination
|
|
value={isActivePage}
|
|
total={isNPage}
|
|
onChange={(val) => {
|
|
onPageClick(val);
|
|
}}
|
|
/>
|
|
</Center>
|
|
</Paper>
|
|
</Stack>
|
|
</>
|
|
);
|
|
}
|