2024-04-24 10:10:26 +00:00
|
|
|
"use client";
|
|
|
|
|
import {
|
2024-12-02 13:19:30 +00:00
|
|
|
CreateIconIon,
|
|
|
|
|
DeleteIcon,
|
|
|
|
|
DotsYIcon,
|
|
|
|
|
EyeIconMdi,
|
2024-04-24 10:10:26 +00:00
|
|
|
} from "@/components/icons";
|
2024-12-02 13:19:30 +00:00
|
|
|
import { error, success } from "@/config/swal";
|
2024-04-24 10:10:26 +00:00
|
|
|
import { deleteArticle, getListArticle } from "@/service/article";
|
|
|
|
|
import { deleteMasterUser, listMasterUsers } from "@/service/master-user";
|
|
|
|
|
import { Article, MasterUser } from "@/types/globals";
|
|
|
|
|
import { Button } from "@nextui-org/button";
|
|
|
|
|
import {
|
2024-12-02 13:19:30 +00:00
|
|
|
Chip,
|
|
|
|
|
ChipProps,
|
|
|
|
|
Dropdown,
|
|
|
|
|
DropdownItem,
|
|
|
|
|
DropdownMenu,
|
|
|
|
|
DropdownTrigger,
|
|
|
|
|
Pagination,
|
|
|
|
|
Spinner,
|
|
|
|
|
Table,
|
|
|
|
|
TableBody,
|
|
|
|
|
TableCell,
|
|
|
|
|
TableColumn,
|
|
|
|
|
TableHeader,
|
|
|
|
|
TableRow,
|
2024-04-24 10:10:26 +00:00
|
|
|
} from "@nextui-org/react";
|
|
|
|
|
import Link from "next/link";
|
|
|
|
|
import { Key, useCallback, useEffect, useState } from "react";
|
|
|
|
|
import Swal from "sweetalert2";
|
|
|
|
|
import withReactContent from "sweetalert2-react-content";
|
|
|
|
|
|
2024-12-02 13:19:30 +00:00
|
|
|
const columns = [
|
|
|
|
|
{ name: "No", uid: "no" },
|
|
|
|
|
{ name: "Username", uid: "username" },
|
|
|
|
|
{ name: "Fullname", uid: "fullname" },
|
|
|
|
|
{ name: "Email", uid: "email" },
|
|
|
|
|
{ name: "Identity Type", uid: "identityType" },
|
|
|
|
|
{ name: "Identity Number", uid: "identityNumber" },
|
|
|
|
|
// { name: "Users", uid: "users" },
|
|
|
|
|
// { name: "Status", uid: "status" },
|
|
|
|
|
{ name: "Aksi", uid: "actions" },
|
|
|
|
|
];
|
2024-04-24 10:10:26 +00:00
|
|
|
|
|
|
|
|
export default function MasterUserTable() {
|
2024-12-02 13:19:30 +00:00
|
|
|
const MySwal = withReactContent(Swal);
|
|
|
|
|
const [user, setUser] = useState<MasterUser[]>([]);
|
|
|
|
|
const [page, setPage] = useState(1);
|
|
|
|
|
const [totalPage, setTotalPage] = useState(1);
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
initState();
|
|
|
|
|
}, [page]);
|
|
|
|
|
|
|
|
|
|
async function initState() {
|
|
|
|
|
const res = await listMasterUsers({ page: page, limit: 10 });
|
|
|
|
|
getTableNumber(10, res?.data?.data);
|
|
|
|
|
setTotalPage(res?.data?.meta?.totalPage);
|
|
|
|
|
}
|
|
|
|
|
const getTableNumber = (limit: number, data?: any) => {
|
|
|
|
|
if (data) {
|
|
|
|
|
const startIndex = limit * (page - 1);
|
|
|
|
|
let iterate = 0;
|
|
|
|
|
const newData = data.map((value: any) => {
|
|
|
|
|
iterate++;
|
|
|
|
|
value.no = startIndex + iterate;
|
|
|
|
|
return value;
|
|
|
|
|
});
|
|
|
|
|
setUser(newData);
|
2024-04-24 10:10:26 +00:00
|
|
|
}
|
2024-12-02 13:19:30 +00:00
|
|
|
};
|
2024-04-24 10:10:26 +00:00
|
|
|
|
2024-12-02 13:19:30 +00:00
|
|
|
async function doDelete(id: any) {
|
|
|
|
|
// loading();
|
|
|
|
|
const resDelete = await deleteMasterUser(id);
|
2024-04-24 10:10:26 +00:00
|
|
|
|
2024-12-02 13:19:30 +00:00
|
|
|
if (resDelete?.error) {
|
|
|
|
|
error(resDelete.message);
|
|
|
|
|
return false;
|
2024-04-24 10:10:26 +00:00
|
|
|
}
|
2024-12-02 13:19:30 +00:00
|
|
|
close();
|
|
|
|
|
successSubmit();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const handleDelete = (id: any) => {
|
|
|
|
|
MySwal.fire({
|
|
|
|
|
title: "Hapus Data",
|
|
|
|
|
icon: "warning",
|
|
|
|
|
showCancelButton: true,
|
|
|
|
|
cancelButtonColor: "#3085d6",
|
|
|
|
|
confirmButtonColor: "#d33",
|
|
|
|
|
confirmButtonText: "Hapus",
|
|
|
|
|
}).then((result) => {
|
|
|
|
|
if (result.isConfirmed) {
|
|
|
|
|
doDelete(id);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
function successSubmit() {
|
|
|
|
|
MySwal.fire({
|
|
|
|
|
title: "Sukses",
|
|
|
|
|
icon: "success",
|
|
|
|
|
confirmButtonColor: "#3085d6",
|
|
|
|
|
confirmButtonText: "OK",
|
|
|
|
|
}).then((result) => {
|
|
|
|
|
if (result.isConfirmed) {
|
|
|
|
|
initState();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const renderCell = useCallback((user: MasterUser, columnKey: Key) => {
|
|
|
|
|
const cellValue = user[columnKey as keyof MasterUser];
|
|
|
|
|
const statusColorMap: Record<string, ChipProps["color"]> = {
|
|
|
|
|
active: "primary",
|
|
|
|
|
cancel: "danger",
|
|
|
|
|
pending: "success",
|
2024-04-24 10:10:26 +00:00
|
|
|
};
|
|
|
|
|
|
2024-12-02 13:19:30 +00:00
|
|
|
switch (columnKey) {
|
|
|
|
|
case "id":
|
|
|
|
|
return <div>{user.id}</div>;
|
|
|
|
|
|
|
|
|
|
case "status":
|
|
|
|
|
return (
|
|
|
|
|
<Chip
|
|
|
|
|
className="capitalize "
|
|
|
|
|
// color={statusColorMap[user.status]}
|
|
|
|
|
size="lg"
|
|
|
|
|
variant="flat"
|
|
|
|
|
>
|
|
|
|
|
<div className="flex flex-row items-center gap-2 justify-center">
|
|
|
|
|
{cellValue}
|
2024-04-24 10:10:26 +00:00
|
|
|
</div>
|
2024-12-02 13:19:30 +00:00
|
|
|
</Chip>
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
case "actions":
|
|
|
|
|
return (
|
|
|
|
|
<div className="relative flex justify-star items-center gap-2">
|
|
|
|
|
<Dropdown className="lg:min-w-[150px] bg-black text-white shadow border ">
|
|
|
|
|
<DropdownTrigger>
|
|
|
|
|
<Button isIconOnly size="lg" variant="light">
|
|
|
|
|
<DotsYIcon className="text-default-300" />
|
|
|
|
|
</Button>
|
|
|
|
|
</DropdownTrigger>
|
|
|
|
|
<DropdownMenu>
|
|
|
|
|
<DropdownItem>
|
|
|
|
|
<Link href={`/admin/master-user/edit/${user.id}`}>
|
|
|
|
|
<CreateIconIon className="inline mr-2 mb-1" />
|
|
|
|
|
Edit
|
|
|
|
|
</Link>
|
|
|
|
|
</DropdownItem>
|
|
|
|
|
<DropdownItem onClick={() => handleDelete(user.id)}>
|
|
|
|
|
<DeleteIcon
|
|
|
|
|
color="red"
|
|
|
|
|
width={20}
|
|
|
|
|
height={16}
|
|
|
|
|
className="inline mr-2 mb-1"
|
|
|
|
|
/>
|
|
|
|
|
Delete
|
|
|
|
|
</DropdownItem>
|
|
|
|
|
</DropdownMenu>
|
|
|
|
|
</Dropdown>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return cellValue;
|
|
|
|
|
}
|
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<div className="mx-5 my-5">
|
|
|
|
|
<div className="flex flex-col items-center rounded-2xl">
|
|
|
|
|
<Table
|
|
|
|
|
// selectionMode="multiple"
|
|
|
|
|
aria-label="micro issue table"
|
|
|
|
|
className="rounded-2xl"
|
|
|
|
|
classNames={{
|
|
|
|
|
th: "bg-white dark:bg-black text-black dark:text-white border-b-1 text-md",
|
|
|
|
|
base: "bg-white dark:bg-black border",
|
|
|
|
|
wrapper:
|
|
|
|
|
"min-h-[50px] bg-transpararent text-black dark:text-white ",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<TableHeader columns={columns}>
|
|
|
|
|
{(column) => (
|
|
|
|
|
<TableColumn key={column.uid}>{column.name}</TableColumn>
|
|
|
|
|
)}
|
|
|
|
|
</TableHeader>
|
|
|
|
|
<TableBody
|
|
|
|
|
items={user}
|
|
|
|
|
emptyContent={"No data to display."}
|
|
|
|
|
loadingContent={<Spinner label="Loading..." />}
|
|
|
|
|
>
|
|
|
|
|
{(item) => (
|
|
|
|
|
<TableRow key={item.id}>
|
|
|
|
|
{(columnKey) => (
|
|
|
|
|
<TableCell>{renderCell(item, columnKey)}</TableCell>
|
|
|
|
|
)}
|
|
|
|
|
</TableRow>
|
|
|
|
|
)}
|
|
|
|
|
</TableBody>
|
|
|
|
|
</Table>
|
|
|
|
|
<div className="my-2 w-full flex justify-center">
|
|
|
|
|
<Pagination
|
|
|
|
|
isCompact
|
|
|
|
|
showControls
|
|
|
|
|
showShadow
|
|
|
|
|
color="primary"
|
|
|
|
|
classNames={{
|
|
|
|
|
base: "bg-transparent",
|
|
|
|
|
wrapper: "bg-transparent",
|
|
|
|
|
}}
|
|
|
|
|
page={page}
|
|
|
|
|
total={totalPage}
|
|
|
|
|
onChange={(page) => setPage(page)}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</>
|
|
|
|
|
);
|
2024-04-24 10:10:26 +00:00
|
|
|
}
|