2025-01-09 12:28:37 +00:00
|
|
|
"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 { useSearchParams } from "next/navigation";
|
|
|
|
|
import TablePagination from "@/components/table/table-pagination";
|
|
|
|
|
import columns from "./column";
|
|
|
|
|
|
|
|
|
|
import { listEnableCategory } from "@/service/content/content";
|
|
|
|
|
import { Checkbox } from "@/components/ui/checkbox";
|
|
|
|
|
import { close, loading } from "@/config/swal";
|
|
|
|
|
import { Link, useRouter } from "@/i18n/routing";
|
|
|
|
|
import { NewCampaignIcon } from "@/components/icon";
|
|
|
|
|
import {
|
|
|
|
|
getCategories,
|
|
|
|
|
getListFAQ,
|
|
|
|
|
getListFeedback,
|
|
|
|
|
} from "@/service/settings/settings";
|
|
|
|
|
|
|
|
|
|
import CreateFAQModal from "./create";
|
2025-03-05 16:37:57 +00:00
|
|
|
import { useTranslations } from "next-intl";
|
2025-01-09 12:28:37 +00:00
|
|
|
|
|
|
|
|
const AdminFeedbackTable = () => {
|
|
|
|
|
const router = useRouter();
|
|
|
|
|
const searchParams = useSearchParams();
|
|
|
|
|
const dataChange = searchParams?.get("dataChange");
|
2025-03-05 16:37:57 +00:00
|
|
|
|
2025-01-09 12:28:37 +00:00
|
|
|
const [openModal, setOpenModal] = React.useState(false);
|
|
|
|
|
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 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(() => {
|
|
|
|
|
if (dataChange) {
|
|
|
|
|
router.push("/admin/settings/feedback");
|
|
|
|
|
}
|
|
|
|
|
fetchData();
|
|
|
|
|
}, [dataChange]);
|
|
|
|
|
|
|
|
|
|
React.useEffect(() => {
|
|
|
|
|
const pageFromUrl = searchParams?.get("page");
|
|
|
|
|
if (pageFromUrl) {
|
|
|
|
|
setPage(Number(pageFromUrl));
|
|
|
|
|
}
|
|
|
|
|
}, [searchParams]);
|
|
|
|
|
|
|
|
|
|
React.useEffect(() => {
|
|
|
|
|
fetchData();
|
|
|
|
|
}, [page]);
|
|
|
|
|
|
|
|
|
|
async function fetchData() {
|
|
|
|
|
try {
|
|
|
|
|
loading();
|
|
|
|
|
const response = await getListFeedback();
|
|
|
|
|
const data = response?.data?.data;
|
2025-08-12 06:31:20 +00:00
|
|
|
// console.log("respone", response);
|
2025-01-09 12:28:37 +00:00
|
|
|
data.forEach((item: any, index: number) => {
|
|
|
|
|
item.no = (page - 1) * 10 + index + 1;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
setDataTable(data);
|
|
|
|
|
setTotalData(data?.length);
|
|
|
|
|
setTotalPage(1);
|
|
|
|
|
close();
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.error("Error fetching tasks:", error);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="w-full overflow-x-auto bg-white p-4 rounded-sm space-y-3">
|
|
|
|
|
<div className="flex justify-between mb-10 items-center">
|
|
|
|
|
<p className="text-xl font-medium text-default-900">Feedback</p>
|
|
|
|
|
<CreateFAQModal />
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<Table className="overflow-hidden">
|
|
|
|
|
<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 AdminFeedbackTable;
|