262 lines
6.7 KiB
TypeScript
262 lines
6.7 KiB
TypeScript
"use client";
|
|
|
|
import { RouterProfile } from "@/app/lib/router_hipmi/router_katalog";
|
|
import ComponentAdminGlobal_HeaderTamplate from "@/app_modules/admin/component/header_tamplate";
|
|
import { AdminEvent_getListPesertaById } from "@/app_modules/admin/event/fun/get/get_list_peserta_by_id";
|
|
import { MODEL_VOTING } from "@/app_modules/vote/model/interface";
|
|
import {
|
|
Avatar,
|
|
Box,
|
|
Button,
|
|
Center,
|
|
Divider,
|
|
Grid,
|
|
Group,
|
|
Modal,
|
|
Paper,
|
|
ScrollArea,
|
|
Spoiler,
|
|
Stack,
|
|
Table,
|
|
Text,
|
|
Textarea,
|
|
Title,
|
|
} from "@mantine/core";
|
|
import { useDisclosure } from "@mantine/hooks";
|
|
import { IconBan } from "@tabler/icons-react";
|
|
import { IconEyeShare } from "@tabler/icons-react";
|
|
import _ from "lodash";
|
|
import { useRouter } from "next/navigation";
|
|
|
|
import { useState } from "react";
|
|
import { AdminVote_funEditStatusPublishById } from "../../fun/edit/fun_edit_status_publish_by_id";
|
|
import toast from "react-simple-toasts";
|
|
import { AdminVote_getListTableByStatusId } from "../../fun/get/get_list_table_by_status_id";
|
|
import { ComponentGlobal_NotifikasiBerhasil } from "@/app_modules/component_global/notif_global/notifikasi_berhasil";
|
|
import { ComponentGlobal_NotifikasiGagal } from "@/app_modules/component_global/notif_global/notifikasi_gagal";
|
|
import { AdminEvent_funEditCatatanById } from "../../fun/edit/fun_edit_status_reject_by_id";
|
|
import { ComponentGlobal_NotifikasiPeringatan } from "@/app_modules/component_global/notif_global/notifikasi_peringatan";
|
|
|
|
export default function AdminVote_TableReview({
|
|
listVote,
|
|
}: {
|
|
listVote: MODEL_VOTING[];
|
|
}) {
|
|
return (
|
|
<>
|
|
<Stack>
|
|
<ComponentAdminGlobal_HeaderTamplate name="Voting: Table Review" />
|
|
<TableStatus listData={listVote} />
|
|
</Stack>
|
|
</>
|
|
);
|
|
}
|
|
|
|
function TableStatus({ listData }: { listData: MODEL_VOTING[] }) {
|
|
const router = useRouter();
|
|
const [opened, { open, close }] = useDisclosure(false);
|
|
const [data, setData] = useState(listData);
|
|
const [votingId, setVotingId] = useState("");
|
|
const [catatan, setCatatan] = useState("");
|
|
|
|
const TableRows = data.map((e, i) => (
|
|
<tr key={i}>
|
|
<td>
|
|
<Center>{e.title}</Center>
|
|
</td>
|
|
<td>
|
|
<Center>
|
|
<Spoiler
|
|
hideLabel="sembunyikan"
|
|
maw={400}
|
|
maxHeight={50}
|
|
showLabel="tampilkan"
|
|
>
|
|
{e.deskripsi}
|
|
</Spoiler>
|
|
</Center>
|
|
</td>
|
|
<th>
|
|
<Stack>
|
|
{e.Voting_DaftarNamaVote.map((v) => (
|
|
<Box key={v.id}>
|
|
<Text>- {v.value}</Text>
|
|
</Box>
|
|
))}
|
|
</Stack>
|
|
</th>
|
|
<td>
|
|
<Center>
|
|
{e.awalVote.toLocaleDateString("id-ID", { dateStyle: "long" })}
|
|
</Center>
|
|
</td>
|
|
<td>
|
|
<Center>
|
|
{e.akhirVote.toLocaleDateString("id-ID", { dateStyle: "long" })}
|
|
</Center>
|
|
</td>
|
|
|
|
<td>
|
|
<Stack align="center">
|
|
<Button
|
|
w={120}
|
|
color={"green"}
|
|
leftIcon={<IconEyeShare />}
|
|
radius={"xl"}
|
|
onClick={() => onPublish(e.id, setData, e.awalVote)}
|
|
>
|
|
Publish
|
|
</Button>
|
|
<Button
|
|
w={120}
|
|
color={"red"}
|
|
leftIcon={<IconBan />}
|
|
radius={"xl"}
|
|
onClick={() => {
|
|
open();
|
|
setVotingId(e.id);
|
|
}}
|
|
>
|
|
Reject
|
|
</Button>
|
|
</Stack>
|
|
</td>
|
|
</tr>
|
|
));
|
|
|
|
return (
|
|
<>
|
|
<Modal
|
|
opened={opened}
|
|
onClose={close}
|
|
centered
|
|
withCloseButton={false}
|
|
size={"lg"}
|
|
>
|
|
<Stack>
|
|
<Textarea
|
|
minRows={2}
|
|
maxRows={5}
|
|
maxLength={300}
|
|
autosize
|
|
label="Masukan Alasan Penolakan"
|
|
placeholder="Contoh: Karena deskripsi kurang lengkap, dll"
|
|
onChange={(val) => {
|
|
setCatatan(val.target.value);
|
|
}}
|
|
/>
|
|
<Group position="right">
|
|
<Button
|
|
radius={"xl"}
|
|
onClick={() => {
|
|
onReject(votingId, setData, catatan, close);
|
|
|
|
// console.log("hehe")
|
|
}}
|
|
>
|
|
Simpan
|
|
</Button>
|
|
</Group>
|
|
</Stack>
|
|
</Modal>
|
|
|
|
<Box>
|
|
<Box bg={"orange.1"} p={"xs"}>
|
|
<Title order={6} c={"orange"}>
|
|
REVIEW
|
|
</Title>
|
|
</Box>
|
|
<ScrollArea w={"100%"}>
|
|
<Box>
|
|
<Table
|
|
withBorder
|
|
verticalSpacing={"md"}
|
|
horizontalSpacing={"xl"}
|
|
p={"md"}
|
|
striped
|
|
highlightOnHover
|
|
>
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
<Center>Judul</Center>
|
|
</th>
|
|
<th>
|
|
<Center>Deskripsi</Center>
|
|
</th>
|
|
<th>
|
|
<Center>Pilihan</Center>
|
|
</th>
|
|
<th>
|
|
<Center>Mulai Vote</Center>
|
|
</th>
|
|
<th>
|
|
<Center>Selesai Vote</Center>
|
|
</th>
|
|
|
|
<th>
|
|
<Center>Aksi</Center>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>{TableRows}</tbody>
|
|
</Table>
|
|
</Box>
|
|
</ScrollArea>
|
|
<Center>
|
|
{_.isEmpty(TableRows) ? (
|
|
<Center h={"50vh"}>
|
|
<Title order={6}>Tidak Ada Data</Title>
|
|
</Center>
|
|
) : (
|
|
""
|
|
)}
|
|
</Center>
|
|
</Box>
|
|
</>
|
|
);
|
|
}
|
|
|
|
async function onPublish(voteId: string, setData: any, awalVote: Date) {
|
|
const hariIni = new Date();
|
|
if (awalVote < hariIni)
|
|
return ComponentGlobal_NotifikasiPeringatan(
|
|
"Tanggal Mulai Votig Lewat, Edit Kembali",
|
|
1500
|
|
);
|
|
|
|
await AdminVote_funEditStatusPublishById(voteId).then(async (res) => {
|
|
if (res.status === 200) {
|
|
await AdminVote_getListTableByStatusId("2").then((val) => {
|
|
setData(val);
|
|
ComponentGlobal_NotifikasiBerhasil(res.message);
|
|
});
|
|
} else {
|
|
ComponentGlobal_NotifikasiGagal(res.message);
|
|
}
|
|
});
|
|
}
|
|
|
|
async function onReject(
|
|
voteId: string,
|
|
setData: any,
|
|
catatan: string,
|
|
close: any
|
|
) {
|
|
const data = {
|
|
id: voteId,
|
|
catatan: catatan,
|
|
};
|
|
await AdminEvent_funEditCatatanById(data as any).then(async (res) => {
|
|
if (res.status === 200) {
|
|
await AdminVote_getListTableByStatusId("2").then((val) => {
|
|
setData(val);
|
|
ComponentGlobal_NotifikasiBerhasil(res.message);
|
|
close();
|
|
});
|
|
} else {
|
|
ComponentGlobal_NotifikasiGagal(res.message);
|
|
}
|
|
});
|
|
}
|