406 lines
13 KiB
TypeScript
406 lines
13 KiB
TypeScript
"use client";
|
|
|
|
import * as React from "react";
|
|
import {
|
|
ColumnDef,
|
|
ColumnFiltersState,
|
|
PaginationState,
|
|
SortingState,
|
|
VisibilityState,
|
|
flexRender,
|
|
getCoreRowModel,
|
|
getFilteredRowModel,
|
|
getPaginationRowModel,
|
|
getSortedRowModel,
|
|
useReactTable,
|
|
} from "@tanstack/react-table";
|
|
import { Button } from "@/components/ui/button";
|
|
|
|
import {
|
|
Table,
|
|
TableBody,
|
|
TableCell,
|
|
TableHead,
|
|
TableHeader,
|
|
TableRow,
|
|
} from "@/components/ui/table";
|
|
import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar";
|
|
import {
|
|
ChevronDown,
|
|
ChevronLeft,
|
|
ChevronRight,
|
|
Eye,
|
|
MoreVertical,
|
|
Search,
|
|
SquarePen,
|
|
Trash2,
|
|
TrendingDown,
|
|
TrendingUp,
|
|
} from "lucide-react";
|
|
import { cn } from "@/lib/utils";
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuRadioGroup,
|
|
DropdownMenuRadioItem,
|
|
DropdownMenuTrigger,
|
|
} from "@/components/ui/dropdown-menu";
|
|
import { Input } from "@/components/ui/input";
|
|
import { InputGroup, InputGroupText } from "@/components/ui/input-group";
|
|
import { paginationBlog } from "@/service/blog/blog";
|
|
import { ticketingPagination } from "@/service/ticketing/ticketing";
|
|
import { Badge } from "@/components/ui/badge";
|
|
import { useRouter, useSearchParams } from "next/navigation";
|
|
import TablePagination from "@/components/table/table-pagination";
|
|
import columns from "./columns";
|
|
import { listTask, listTaskTa } from "@/service/task";
|
|
import { Label } from "@/components/ui/label";
|
|
import { format } from "date-fns";
|
|
import { useTranslations } from "next-intl";
|
|
import useTableColumns from "./columns";
|
|
|
|
const TaskTaTable = () => {
|
|
const router = useRouter();
|
|
const searchParams = useSearchParams();
|
|
const t = useTranslations("AnalyticsDashboard");
|
|
const [dataTable, setDataTable] = React.useState<any[]>([]);
|
|
const [totalData, setTotalData] = React.useState<number>(1);
|
|
const [sorting, setSorting] = React.useState<SortingState>([]);
|
|
const [columnFilters, setColumnFilters] = React.useState<ColumnFiltersState>(
|
|
[]
|
|
);
|
|
const [columnVisibility, setColumnVisibility] =
|
|
React.useState<VisibilityState>({});
|
|
const [rowSelection, setRowSelection] = React.useState({});
|
|
const [showData, setShowData] = React.useState("10");
|
|
const [pagination, setPagination] = React.useState<PaginationState>({
|
|
pageIndex: 0,
|
|
pageSize: Number(showData),
|
|
});
|
|
const [statusFilter, setStatusFilter] = React.useState<number[]>([]);
|
|
const [dateFilter, setDateFilter] = React.useState("");
|
|
const [endDate, setEndDate] = React.useState("");
|
|
const [filterByCode, setFilterByCode] = React.useState<string>("");
|
|
const [page, setPage] = React.useState(1);
|
|
const [totalPage, setTotalPage] = React.useState(1);
|
|
const [limit, setLimit] = React.useState(10);
|
|
const [isSpecificAttention, setIsSpecificAttention] = React.useState(true);
|
|
const [search, setSearch] = React.useState<string>("");
|
|
const columns = useTableColumns();
|
|
const table = useReactTable({
|
|
data: dataTable,
|
|
columns,
|
|
onSortingChange: setSorting,
|
|
onColumnFiltersChange: setColumnFilters,
|
|
getCoreRowModel: getCoreRowModel(),
|
|
getPaginationRowModel: getPaginationRowModel(),
|
|
getSortedRowModel: getSortedRowModel(),
|
|
getFilteredRowModel: getFilteredRowModel(),
|
|
onColumnVisibilityChange: setColumnVisibility,
|
|
onRowSelectionChange: setRowSelection,
|
|
onPaginationChange: setPagination,
|
|
state: {
|
|
sorting,
|
|
columnFilters,
|
|
columnVisibility,
|
|
rowSelection,
|
|
pagination,
|
|
},
|
|
});
|
|
|
|
React.useEffect(() => {
|
|
const pageFromUrl = searchParams?.get("page");
|
|
if (pageFromUrl) {
|
|
setPage(Number(pageFromUrl));
|
|
}
|
|
}, [searchParams]);
|
|
|
|
React.useEffect(() => {
|
|
fetchData();
|
|
}, [
|
|
page,
|
|
showData,
|
|
isSpecificAttention,
|
|
search,
|
|
dateFilter,
|
|
filterByCode,
|
|
statusFilter,
|
|
]);
|
|
|
|
async function fetchData() {
|
|
const formattedStartDate = dateFilter
|
|
? format(new Date(dateFilter), "yyyy-MM-dd")
|
|
: "";
|
|
try {
|
|
const res = await listTaskTa(
|
|
page - 1,
|
|
search,
|
|
showData,
|
|
filterByCode,
|
|
formattedStartDate,
|
|
isSpecificAttention ? "atensi-khusus" : "tugas-harian",
|
|
statusFilter
|
|
);
|
|
|
|
const data = res?.data?.data;
|
|
const contentData = data?.content;
|
|
|
|
// let contentDataFilter = res?.data?.data?.content || [];
|
|
|
|
// Filter berdasarkan status
|
|
// contentDataFilter = contentDataFilter.filter((item: any) => {
|
|
// const isSelesai = statusFilter.includes(1) ? item.isDone : true;
|
|
// const isAktif = statusFilter.includes(2) ? item.isActive : true;
|
|
// return isSelesai && isAktif;
|
|
// });
|
|
|
|
contentData.forEach((item: any, index: number) => {
|
|
item.no = (page - 1) * Number(showData) + index + 1;
|
|
});
|
|
|
|
console.log("contentData : ", contentData);
|
|
|
|
setDataTable(contentData);
|
|
setTotalData(data?.totalElements);
|
|
setTotalPage(data?.totalPages);
|
|
} catch (error) {
|
|
console.error("Error fetching tasks:", error);
|
|
}
|
|
}
|
|
|
|
const handleSearch = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
setFilterByCode(e.target.value);
|
|
setSearch(e.target.value);
|
|
table.getColumn("judul")?.setFilterValue(e.target.value);
|
|
};
|
|
|
|
function handleStatusCheckboxChange(value: number) {
|
|
setStatusFilter((prev) =>
|
|
prev.includes(value)
|
|
? prev.filter((status) => status !== value)
|
|
: [...prev, value]
|
|
);
|
|
}
|
|
|
|
// const handleSearchFilterByCode = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
// const value = e.target.value;
|
|
// console.log("code :", value);
|
|
// setFilterByCode(value);
|
|
// fetchData();
|
|
// };
|
|
|
|
return (
|
|
<div className="w-full overflow-x-auto">
|
|
<div className="mx-5 mb-3">
|
|
<div className="">
|
|
<div className="row">
|
|
<div className="flex justify-between mb-6">
|
|
<label className="inline-flex text-md cursor-pointer">
|
|
<input
|
|
type="checkbox"
|
|
onChange={() => setIsSpecificAttention(!isSpecificAttention)}
|
|
hidden
|
|
/>
|
|
<span
|
|
className={` ${
|
|
isSpecificAttention
|
|
? "bg-default-900 text-white"
|
|
: "dark:text-default-700 border-2"
|
|
}
|
|
px-[18px] py-1 transition duration-100 rounded`}
|
|
>
|
|
{t("special-attention", { defaultValue: "Special Attention" })}
|
|
</span>
|
|
<span
|
|
className={`
|
|
${
|
|
!isSpecificAttention
|
|
? "bg-default-900 text-white"
|
|
: " dark:text-default-700 border-2"
|
|
}
|
|
px-[18px] py-1 transition duration-100 rounded
|
|
`}
|
|
>
|
|
{t("daily-tasks", { defaultValue: "Daily Tasks" })}
|
|
</span>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="flex flex-col sm:flex-row lg:flex-row justify-between sm:items-center md:items-center lg:items-center px-5">
|
|
<div className="mb-3 sm:mb-0 lg-mb-0">
|
|
<InputGroup merged>
|
|
<InputGroupText className="bg-transparent dark:border-secondary dark:group-focus-within:border-secondary">
|
|
<Search className=" h-4 w-4 dark:text-white" />
|
|
</InputGroupText>
|
|
<Input
|
|
type="text"
|
|
placeholder="Search Title dan Code"
|
|
className="bg-transparent dark:border-secondary dark:placeholder-white/80 dark:focus:border-secondary dark:text-white w-full"
|
|
value={search}
|
|
onChange={handleSearch}
|
|
/>
|
|
</InputGroup>
|
|
</div>
|
|
|
|
<div className=" flex flex-row items-center gap-3">
|
|
<div className="flex items-center py-4">
|
|
<div className="mx-3">
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<Button size="md" variant="outline">
|
|
1 - {showData} Data
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent className="w-56 text-sm">
|
|
<DropdownMenuRadioGroup
|
|
value={showData}
|
|
onValueChange={setShowData}
|
|
>
|
|
<DropdownMenuRadioItem value="10">
|
|
1 - 10 Data
|
|
</DropdownMenuRadioItem>
|
|
<DropdownMenuRadioItem value="50">
|
|
1 - 50 Data
|
|
</DropdownMenuRadioItem>
|
|
<DropdownMenuRadioItem value="100">
|
|
1 - 100 Data
|
|
</DropdownMenuRadioItem>
|
|
<DropdownMenuRadioItem value="250">
|
|
1 - 250 Data
|
|
</DropdownMenuRadioItem>
|
|
</DropdownMenuRadioGroup>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</div>
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<Button
|
|
variant="outline"
|
|
className="ml-auto w-full sm:w-[100px]"
|
|
size="md"
|
|
>
|
|
Filter <ChevronDown />
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent
|
|
align="end"
|
|
className="w-64 h-[200px] overflow-y-auto"
|
|
>
|
|
<div className="flex flex-row justify-between my-1 mx-1">
|
|
<p>Filter</p>
|
|
</div>
|
|
<div className="mx-2 my-1">
|
|
<Label>{t("date", { defaultValue: "Date" })}</Label>
|
|
<Input
|
|
type="date"
|
|
value={dateFilter}
|
|
onChange={(e) => setDateFilter(e.target.value)}
|
|
className="max-w-sm"
|
|
/>
|
|
</div>
|
|
{/* <div className="mx-2 my-1">
|
|
<Label>Code</Label>
|
|
<Input
|
|
placeholder="Filter Status..."
|
|
value={filterByCode}
|
|
// onChange={handleSearchFilterByCode}
|
|
className="max-w-sm"
|
|
/>
|
|
</div> */}
|
|
<Label className="ml-2 mt-2">Status</Label>
|
|
<div className="flex items-center px-4 py-1">
|
|
<input
|
|
type="checkbox"
|
|
id="status-1"
|
|
className="mr-2"
|
|
checked={statusFilter.includes(1)}
|
|
onChange={() => handleStatusCheckboxChange(1)}
|
|
/>
|
|
<label htmlFor="status-1" className="text-sm">
|
|
{t("done", { defaultValue: "Done" })}
|
|
</label>
|
|
</div>
|
|
<div className="flex items-center px-4 py-1">
|
|
<input
|
|
type="checkbox"
|
|
id="status-2"
|
|
className="mr-2"
|
|
checked={statusFilter.includes(2)}
|
|
onChange={() => handleStatusCheckboxChange(2)}
|
|
/>
|
|
<label htmlFor="status-2" className="text-sm">
|
|
{t("active", { defaultValue: "Active" })}
|
|
</label>
|
|
</div>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</div>
|
|
</div>
|
|
{/* <div className="flex-none">
|
|
<Input
|
|
placeholder="Filter Status..."
|
|
value={
|
|
(table.getColumn("status")?.getFilterValue() as string) ?? ""
|
|
}
|
|
onChange={(event: React.ChangeEvent<HTMLInputElement>) =>
|
|
table.getColumn("status")?.setFilterValue(event.target.value)
|
|
}
|
|
className="max-w-sm "
|
|
/>
|
|
</div> */}
|
|
</div>
|
|
<Table className="overflow-hidden mt-3">
|
|
<TableHeader>
|
|
{table.getHeaderGroups().map((headerGroup) => (
|
|
<TableRow key={headerGroup.id} className="bg-default-200">
|
|
{headerGroup.headers.map((header) => (
|
|
<TableHead key={header.id}>
|
|
{header.isPlaceholder
|
|
? null
|
|
: flexRender(
|
|
header.column.columnDef.header,
|
|
header.getContext()
|
|
)}
|
|
</TableHead>
|
|
))}
|
|
</TableRow>
|
|
))}
|
|
</TableHeader>
|
|
<TableBody>
|
|
{table.getRowModel().rows?.length ? (
|
|
table.getRowModel().rows.map((row) => (
|
|
<TableRow
|
|
key={row.id}
|
|
data-state={row.getIsSelected() && "selected"}
|
|
className="h-[75px]"
|
|
>
|
|
{row.getVisibleCells().map((cell) => (
|
|
<TableCell key={cell.id}>
|
|
{flexRender(cell.column.columnDef.cell, cell.getContext())}
|
|
</TableCell>
|
|
))}
|
|
</TableRow>
|
|
))
|
|
) : (
|
|
<TableRow>
|
|
<TableCell colSpan={columns.length} className="h-24 text-center">
|
|
No results.
|
|
</TableCell>
|
|
</TableRow>
|
|
)}
|
|
</TableBody>
|
|
</Table>
|
|
<TablePagination
|
|
table={table}
|
|
totalData={totalData}
|
|
totalPage={totalPage}
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default TaskTaTable;
|