243 lines
6.8 KiB
TypeScript
243 lines
6.8 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 {
|
||
|
|
Table,
|
||
|
|
TableBody,
|
||
|
|
TableCell,
|
||
|
|
TableHead,
|
||
|
|
TableHeader,
|
||
|
|
TableRow,
|
||
|
|
} from "@/components/ui/table";
|
||
|
|
import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar";
|
||
|
|
import {
|
||
|
|
ChevronLeft,
|
||
|
|
ChevronRight,
|
||
|
|
Eye,
|
||
|
|
MoreVertical,
|
||
|
|
Search,
|
||
|
|
SquarePen,
|
||
|
|
Trash2,
|
||
|
|
TrendingDown,
|
||
|
|
TrendingUp,
|
||
|
|
UserIcon,
|
||
|
|
} from "lucide-react";
|
||
|
|
import { cn } from "@/lib/utils";
|
||
|
|
import {
|
||
|
|
DropdownMenu,
|
||
|
|
DropdownMenuContent,
|
||
|
|
DropdownMenuItem,
|
||
|
|
DropdownMenuRadioGroup,
|
||
|
|
DropdownMenuRadioItem,
|
||
|
|
DropdownMenuTrigger,
|
||
|
|
} from "@/components/ui/dropdown-menu";
|
||
|
|
import { Badge } from "@/components/ui/badge";
|
||
|
|
import { useParams, useRouter, useSearchParams } from "next/navigation";
|
||
|
|
import TablePagination from "@/components/table/table-pagination";
|
||
|
|
import columns from "./column";
|
||
|
|
import {
|
||
|
|
Popover,
|
||
|
|
PopoverContent,
|
||
|
|
PopoverTrigger,
|
||
|
|
} from "@/components/ui/popover";
|
||
|
|
import { listEnableCategory } from "@/service/content/content";
|
||
|
|
import { Checkbox } from "@/components/ui/checkbox";
|
||
|
|
import { close, loading } from "@/config/swal";
|
||
|
|
import { getMediaTrackingResult } from "@/service/service/media-tracking/media-tracking";
|
||
|
|
|
||
|
|
|
||
|
|
const NewsDetailTable = () => {
|
||
|
|
const router = useRouter();
|
||
|
|
const searchParams = useSearchParams();
|
||
|
|
const param = useParams();
|
||
|
|
const id = param?.id;
|
||
|
|
const [search, setSearch] = React.useState("");
|
||
|
|
const [showData, setShowData] = React.useState("10");
|
||
|
|
const [categories, setCategories] = React.useState<any>();
|
||
|
|
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 [showTable, setShowTable] = React.useState(false);
|
||
|
|
const [link, setLink] = React.useState("");
|
||
|
|
const [columnVisibility, setColumnVisibility] =
|
||
|
|
React.useState<VisibilityState>({});
|
||
|
|
const [rowSelection, setRowSelection] = React.useState({});
|
||
|
|
const [pagination, setPagination] = React.useState<PaginationState>({
|
||
|
|
pageIndex: 0,
|
||
|
|
pageSize: Number(showData),
|
||
|
|
});
|
||
|
|
const [categoryFilter, setCategoryFilter] = React.useState<number[]>([]);
|
||
|
|
const [statusFilter, setStatusFilter] = React.useState<number[]>([]);
|
||
|
|
const [page, setPage] = React.useState(1);
|
||
|
|
const [totalPage, setTotalPage] = React.useState(1);
|
||
|
|
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,
|
||
|
|
},
|
||
|
|
});
|
||
|
|
|
||
|
|
let typingTimer: any;
|
||
|
|
const doneTypingInterval = 1500;
|
||
|
|
|
||
|
|
// const handleKeyUp = () => {
|
||
|
|
// clearTimeout(typingTimer);
|
||
|
|
// typingTimer = setTimeout(doneTyping, doneTypingInterval);
|
||
|
|
// };
|
||
|
|
|
||
|
|
const handleKeyDown = () => {
|
||
|
|
clearTimeout(typingTimer);
|
||
|
|
};
|
||
|
|
|
||
|
|
// async function doneTyping() {
|
||
|
|
// fetchData();
|
||
|
|
// }
|
||
|
|
|
||
|
|
React.useEffect(() => {
|
||
|
|
const pageFromUrl = searchParams?.get("page");
|
||
|
|
if (pageFromUrl) {
|
||
|
|
setPage(Number(pageFromUrl));
|
||
|
|
}
|
||
|
|
}, [searchParams]);
|
||
|
|
|
||
|
|
React.useEffect(() => {
|
||
|
|
fetchData();
|
||
|
|
setPagination({
|
||
|
|
pageIndex: 0,
|
||
|
|
pageSize: Number(showData),
|
||
|
|
});
|
||
|
|
}, [page, showData]);
|
||
|
|
|
||
|
|
async function fetchData() {
|
||
|
|
try {
|
||
|
|
loading();
|
||
|
|
const res = await getMediaTrackingResult({ id: id, page: page - 1 });
|
||
|
|
const data = res?.data?.data;
|
||
|
|
const contentData = data?.content;
|
||
|
|
contentData.forEach((item: any, index: number) => {
|
||
|
|
item.no = (page - 1) * Number(showData) + index + 1;
|
||
|
|
});
|
||
|
|
|
||
|
|
console.log("contentData : ", data);
|
||
|
|
|
||
|
|
setDataTable(contentData);
|
||
|
|
setTotalData(data?.totalElements);
|
||
|
|
setTotalPage(data?.totalPages);
|
||
|
|
close();
|
||
|
|
} catch (error) {
|
||
|
|
console.error("Error fetching tasks:", error);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
React.useEffect(() => {
|
||
|
|
getCategories();
|
||
|
|
}, []);
|
||
|
|
|
||
|
|
async function getCategories() {
|
||
|
|
const category = await listEnableCategory("");
|
||
|
|
const resCategory = category?.data?.data?.content;
|
||
|
|
setCategories(resCategory);
|
||
|
|
}
|
||
|
|
|
||
|
|
const handleChange = (type: string, id: number, checked: boolean) => {
|
||
|
|
if (type === "category") {
|
||
|
|
if (checked) {
|
||
|
|
const temp: number[] = [...categoryFilter];
|
||
|
|
temp.push(id);
|
||
|
|
setCategoryFilter(temp);
|
||
|
|
} else {
|
||
|
|
const temp = categoryFilter.filter((a) => a !== id);
|
||
|
|
setCategoryFilter(temp);
|
||
|
|
}
|
||
|
|
} else {
|
||
|
|
if (checked) {
|
||
|
|
const temp: number[] = [...statusFilter];
|
||
|
|
temp.push(id);
|
||
|
|
setStatusFilter(temp);
|
||
|
|
} else {
|
||
|
|
const temp = statusFilter.filter((a) => a !== id);
|
||
|
|
setStatusFilter(temp);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
};
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div className="w-full overflow-x-auto bg-white p-4 rounded-sm space-y-3 border">
|
||
|
|
<Table className="overflow-hidden mt-4">
|
||
|
|
<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} 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 NewsDetailTable;
|