lms/resources/js/pages/dashboard/instructors/applications.tsx
2025-12-15 12:26:23 +01:00

70 lines
2.6 KiB
TypeScript

import TableFilter from '@/components/table/table-filter';
import TableFooter from '@/components/table/table-footer';
import TableHeader from '@/components/table/table-header';
import { Card } from '@/components/ui/card';
import { Table, TableBody, TableCell, TableRow } from '@/components/ui/table';
import DashboardLayout from '@/layouts/dashboard/layout';
import { SharedData } from '@/types/global';
import { SortingState, flexRender, getCoreRowModel, getFilteredRowModel, getSortedRowModel, useReactTable } from '@tanstack/react-table';
import * as React from 'react';
import { ReactNode } from 'react';
import TableColumn from './Partials/applications-table-columns';
interface Props extends SharedData {
applications: Pagination<Instructor>;
}
const Applications = (props: Props) => {
const [sorting, setSorting] = React.useState<SortingState>([]);
const { translate } = props;
const { dashboard } = translate;
const table = useReactTable({
data: props.applications.data,
columns: TableColumn(props.translate),
onSortingChange: setSorting,
getCoreRowModel: getCoreRowModel(),
getSortedRowModel: getSortedRowModel(),
getFilteredRowModel: getFilteredRowModel(),
state: { sorting },
});
return (
<Card>
<TableFilter
data={props.applications}
title={dashboard.instructor_list}
globalSearch={true}
tablePageSizes={[10, 15, 20, 25]}
routeName="instructors.applications"
// Icon={<Users className="h-6 w-6 text-primary" />}
// exportPath={route('users.export')}
/>
<Table className="border-border border-y">
<TableHeader table={table} tableHeadClass="px-6" />
<TableBody>
{table.getRowModel().rows.map((row) => (
<TableRow key={row.id} data-state={row.getIsSelected() && 'selected'}>
{row.getVisibleCells().map((cell) => (
<TableCell key={cell.id} className="px-6">
{flexRender(cell.column.columnDef.cell, cell.getContext())}
</TableCell>
))}
</TableRow>
))}
</TableBody>
</Table>
{table.getRowModel().rows?.length <= 0 && <p className="border-border w-full border-b px-6 py-10 text-center">{dashboard.no_results_found}</p>}
<TableFooter className="p-5 sm:p-7" routeName="instructors.applications" paginationInfo={props.applications} />
</Card>
);
};
Applications.layout = (page: ReactNode) => <DashboardLayout children={page} />;
export default Applications;