392 lines
14 KiB
TypeScript
392 lines
14 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, Plus, Search } from "lucide-react";
|
|
import { cn } from "@/lib/utils";
|
|
import { Input } from "@/components/ui/input";
|
|
import { InputGroup, InputGroupText } from "@/components/ui/input-group";
|
|
import { getBlogCategory, paginationBlog } from "@/service/blog/blog";
|
|
import { ticketingPagination } from "@/service/ticketing/ticketing";
|
|
import { useRouter, useSearchParams } from "next/navigation";
|
|
import TablePagination from "@/components/table/table-pagination";
|
|
import columns from "./columns";
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuCheckboxItem,
|
|
DropdownMenuContent,
|
|
DropdownMenuTrigger,
|
|
} from "@/components/ui/dropdown-menu";
|
|
import { Label } from "@/components/ui/label";
|
|
import { listEnableCategory } from "@/service/content/content";
|
|
import { useTranslations } from "next-intl";
|
|
import { CardHeader, CardTitle } from "@/components/ui/card";
|
|
import { Link } from "@/i18n/routing";
|
|
|
|
const BlogTable = () => {
|
|
const router = useRouter();
|
|
const searchParams = useSearchParams();
|
|
const t = useTranslations("Blog");
|
|
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 [pagination, setPagination] = React.useState<PaginationState>({
|
|
pageIndex: 0,
|
|
pageSize: 10,
|
|
});
|
|
const [page, setPage] = React.useState(1);
|
|
const [totalPage, setTotalPage] = React.useState(1);
|
|
const [limit, setLimit] = React.useState(10);
|
|
const [search, setSearch] = React.useState<string>("");
|
|
const [categories, setCategories] = React.useState<any[]>([]);
|
|
const [selectedCategories, setSelectedCategories] = React.useState<number[]>(
|
|
[]
|
|
);
|
|
const [categoryFilter, setCategoryFilter] = React.useState<string>("");
|
|
const [statusFilter, setStatusFilter] = React.useState<any[]>([]);
|
|
|
|
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();
|
|
getCategories();
|
|
}, [categoryFilter, statusFilter, page, limit, search]);
|
|
|
|
async function fetchData() {
|
|
try {
|
|
const res = await paginationBlog(
|
|
limit,
|
|
page - 1,
|
|
search,
|
|
categoryFilter,
|
|
statusFilter
|
|
);
|
|
const data = res?.data?.data;
|
|
const contentData = data?.content;
|
|
contentData.forEach((item: any, index: number) => {
|
|
item.no = (page - 1) * limit + index + 1;
|
|
});
|
|
|
|
console.log("contentData : ", contentData);
|
|
|
|
setDataTable(contentData);
|
|
setTotalData(data?.totalElements);
|
|
setTotalPage(data?.totalPages);
|
|
} catch (error) {
|
|
console.error("Error fetching tasks:", error);
|
|
}
|
|
}
|
|
|
|
async function getCategories() {
|
|
const category = await getBlogCategory();
|
|
const resCategory = category?.data?.data?.content;
|
|
setCategories(resCategory || []);
|
|
}
|
|
|
|
const handleCheckboxChange = (categoryId: number) => {
|
|
setSelectedCategories(
|
|
(prev: any) =>
|
|
prev.includes(categoryId)
|
|
? prev.filter((id: any) => id !== categoryId) // Hapus jika sudah dipilih
|
|
: [...prev, categoryId] // Tambahkan jika belum dipilih
|
|
);
|
|
|
|
// Perbarui filter kategori
|
|
setCategoryFilter((prev) => {
|
|
const updatedCategories = prev.split(",").filter(Boolean).map(Number);
|
|
|
|
const newCategories = updatedCategories.includes(categoryId)
|
|
? updatedCategories.filter((id) => id !== categoryId)
|
|
: [...updatedCategories, categoryId];
|
|
|
|
return newCategories.join(",");
|
|
});
|
|
};
|
|
|
|
function handleStatusCheckboxChange(value: any) {
|
|
setStatusFilter((prev: any) =>
|
|
prev.includes(value)
|
|
? prev.filter((status: any) => status !== value)
|
|
: [...prev, value]
|
|
);
|
|
}
|
|
|
|
const handleSearch = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
setSearch(e.target.value); // Perbarui state search
|
|
table.getColumn("judul")?.setFilterValue(e.target.value); // Set filter tabel
|
|
};
|
|
|
|
return (
|
|
<div>
|
|
<CardHeader className="border-b border-solid border-default-200 mb-6">
|
|
<CardTitle>
|
|
<div className="flex items-center">
|
|
<div className="flex-1 text-xl font-medium text-default-900">
|
|
{t("table")} {t("blog")}
|
|
</div>
|
|
<div className="flex-none">
|
|
<Link href={"/contributor/blog/create"}>
|
|
<Button fullWidth color="primary">
|
|
<Plus className="w-6 h-6 me-1.5" />
|
|
{t("create-indeks")}
|
|
</Button>
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</CardTitle>
|
|
</CardHeader>
|
|
|
|
<div className="w-full overflow-x-auto">
|
|
<div className="flex flex-col md:flex-row lg:flex-row md:justify-between lg:justify-between items-center md:px-5 lg:px-5">
|
|
<div className="w-full md:w-[200px] lg:w-[200px] px-2">
|
|
<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"
|
|
className="bg-transparent dark:border-secondary dark:placeholder-white/80 dark:focus:border-secondary dark:text-white"
|
|
value={search}
|
|
onChange={handleSearch}
|
|
/>
|
|
</InputGroup>
|
|
</div>
|
|
<div className="flex flex-row items-center gap-3">
|
|
<div className="flex items-center py-4">
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<Button variant="outline" className="ml-auto" 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>
|
|
<Label className="ml-2">{t("category")}</Label>
|
|
{categories.length > 0 ? (
|
|
categories.map((category) => (
|
|
<div
|
|
key={category.id}
|
|
className="flex items-center px-4 py-1"
|
|
>
|
|
<input
|
|
type="checkbox"
|
|
id={`category-${category.id}`}
|
|
className="mr-2"
|
|
checked={selectedCategories.includes(category.id)}
|
|
onChange={() => handleCheckboxChange(category.id)}
|
|
/>
|
|
<label
|
|
htmlFor={`category-${category.id}`}
|
|
className="text-sm"
|
|
>
|
|
{category.name}
|
|
</label>
|
|
</div>
|
|
))
|
|
) : (
|
|
<p className="text-sm text-gray-500 px-4 py-2">
|
|
No categories found.
|
|
</p>
|
|
)}
|
|
<Label className="ml-2 mt-2">Status</Label>
|
|
<div className="flex items-center px-4 py-1">
|
|
<input
|
|
type="checkbox"
|
|
id="status-2"
|
|
className="mr-2"
|
|
checked={statusFilter.includes(1)}
|
|
onChange={() => handleStatusCheckboxChange(1)}
|
|
/>
|
|
<label htmlFor="status-2" className="text-sm">
|
|
Menunggu Review
|
|
</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">
|
|
Diterima
|
|
</label>
|
|
</div>
|
|
<div className="flex items-center px-4 py-1">
|
|
<input
|
|
type="checkbox"
|
|
id="status-3"
|
|
className="mr-2"
|
|
checked={statusFilter.includes(3)}
|
|
onChange={() => handleStatusCheckboxChange(3)}
|
|
/>
|
|
<label htmlFor="status-3" className="text-sm">
|
|
Minta Update
|
|
</label>
|
|
</div>
|
|
<div className="flex items-center px-4 py-1">
|
|
<input
|
|
type="checkbox"
|
|
id="status-4"
|
|
className="mr-2"
|
|
checked={statusFilter.includes(4)}
|
|
onChange={() => handleStatusCheckboxChange(4)}
|
|
/>
|
|
<label htmlFor="status-4" className="text-sm">
|
|
Ditolak
|
|
</label>
|
|
</div>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</div>
|
|
<div className="flex items-center py-4">
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<Button variant="outline" className="ml-auto" size="md">
|
|
Columns <ChevronDown />
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end">
|
|
{table
|
|
.getAllColumns()
|
|
.filter((column) => column.getCanHide())
|
|
.map((column) => {
|
|
return (
|
|
<DropdownMenuCheckboxItem
|
|
key={column.id}
|
|
className="capitalize"
|
|
checked={column.getIsVisible()}
|
|
onCheckedChange={(value) =>
|
|
column.toggleVisibility(!!value)
|
|
}
|
|
>
|
|
{column.id}
|
|
</DropdownMenuCheckboxItem>
|
|
);
|
|
})}
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</div>
|
|
</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>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default BlogTable;
|