157 lines
5.9 KiB
JavaScript
157 lines
5.9 KiB
JavaScript
import {Box, Typography} from "@mui/material";
|
|
import {useMemo} from "react";
|
|
import {GET_INSPECTOR_EXPERT} from "@/core/data/apiRoutes";
|
|
import {useTranslations} from "next-intl";
|
|
import TableRowActions from "./TableRowActions";
|
|
import moment from "jalali-moment";
|
|
import DataTable from "@/core/components/DataTable";
|
|
import MuiDatePicker from "@/core/components/MuiDatePicker";
|
|
import DashboardLayouts from "@/components/layouts/Dashboard";
|
|
|
|
function DashboardInspectorExpertComponent() {
|
|
const t = useTranslations();
|
|
const columns = useMemo(
|
|
() => [
|
|
{
|
|
accessorFn: (row) => row.id,
|
|
id: "id",
|
|
header: t("InspectorExpert.id"),
|
|
enableColumnFilter: true,
|
|
datatype: "numeric",
|
|
filterFn: "equals",
|
|
columnFilterModeOptions: [
|
|
"equals",
|
|
"notEquals",
|
|
"contains",
|
|
"lessThan",
|
|
"greaterThan",
|
|
"between",
|
|
],
|
|
Cell: ({renderedCellValue}) => (
|
|
<Typography variant="body2">{renderedCellValue}</Typography>
|
|
),
|
|
},
|
|
{
|
|
accessorFn: (row) => row.name,
|
|
id: "name",
|
|
header: t("InspectorExpert.name"),
|
|
enableColumnFilter: true,
|
|
datatype: "text",
|
|
filterFn: "contains",
|
|
columnFilterModeOptions: ["contains", "equals", "notEquals"],
|
|
Cell: ({renderedCellValue}) => (
|
|
<Typography variant="body2">{renderedCellValue}</Typography>
|
|
),
|
|
},
|
|
{
|
|
accessorFn: (row) => row.national_id,
|
|
id: "national_id",
|
|
header: t("InspectorExpert.national_id"),
|
|
enableColumnFilter: true,
|
|
datatype: "numeric",
|
|
filterFn: "equals",
|
|
columnFilterModeOptions: [
|
|
"equals",
|
|
"notEquals",
|
|
"contains",
|
|
"lessThan",
|
|
"greaterThan",
|
|
"between",
|
|
],
|
|
Cell: ({renderedCellValue}) => (
|
|
<Typography variant="body2">{renderedCellValue}</Typography>
|
|
),
|
|
},
|
|
{
|
|
accessorFn: (row) => row.phone_number,
|
|
id: "phone_number",
|
|
header: t("InspectorExpert.phone_number"),
|
|
enableColumnFilter: true,
|
|
datatype: "numeric",
|
|
filterFn: "equals",
|
|
columnFilterModeOptions: [
|
|
"equals",
|
|
"notEquals",
|
|
"contains",
|
|
"lessThan",
|
|
"greaterThan",
|
|
"between",
|
|
],
|
|
Cell: ({renderedCellValue}) => (
|
|
<Typography variant="body2">{renderedCellValue}</Typography>
|
|
),
|
|
},
|
|
{
|
|
accessorFn: (row) =>
|
|
moment(row.created_at).locale("fa").format("HH:mm | yyyy/MM/DD"),
|
|
id: "created_at",
|
|
header: t("InspectorExpert.created_at"),
|
|
enableColumnFilter: true,
|
|
datatype: "date",
|
|
filterFn: "lessThan",
|
|
columnFilterModeOptions: ["lessThan", "greaterThan"],
|
|
Cell: ({renderedCellValue}) => {
|
|
return <Typography variant="body2">{renderedCellValue}</Typography>;
|
|
},
|
|
Header: ({column}) => <>{column.columnDef.header}</>,
|
|
Filter: ({column}) => {
|
|
return (
|
|
<MuiDatePicker column={column}/>
|
|
);
|
|
},
|
|
},
|
|
{
|
|
accessorFn: (row) =>
|
|
moment(row.updated_at).locale("fa").format("HH:mm | yyyy/MM/DD"),
|
|
id: "updated_at",
|
|
header: t("InspectorExpert.updated_at"),
|
|
enableColumnFilter: false,
|
|
datatype: "numeric",
|
|
Cell: ({renderedCellValue}) => (
|
|
<Typography variant="body2">{renderedCellValue}</Typography>
|
|
),
|
|
},
|
|
{
|
|
accessorFn: (row) => row.state_name,
|
|
id: "state_id",
|
|
header: t("InspectorExpert.state_name"),
|
|
enableColumnFilter: false,
|
|
datatype: "numeric",
|
|
Cell: ({renderedCellValue}) => (
|
|
<Typography variant="body2">{renderedCellValue}</Typography>
|
|
),
|
|
},
|
|
],
|
|
[]
|
|
);
|
|
|
|
return (
|
|
<DashboardLayouts>
|
|
<Box sx={{px: 3}}>
|
|
<DataTable
|
|
tableUrl={GET_INSPECTOR_EXPERT}
|
|
columns={columns}
|
|
selectableRow={false}
|
|
enableCustomToolbar={false}
|
|
enableLastUpdate={true}
|
|
enablePinning={true}
|
|
sorting={[{
|
|
id: 'id', desc: false
|
|
}]}
|
|
enableDensityToggle={false}
|
|
initialState={{density: 'compact'}} //compact (small) //comfortable (medium) //spacious (large)
|
|
enableColumnFilters={true}
|
|
enableHiding={true}
|
|
enableFullScreenToggle={false}
|
|
enableGlobalFilter={false}
|
|
enableColumnResizing={false} // if you want true this you shold change renderRowActions props ** see https://www.material-react-table.com/docs/guides/row-actions
|
|
enableRowActions={true}
|
|
TableRowAction={TableRowActions}
|
|
/>
|
|
</Box>
|
|
</DashboardLayouts>
|
|
);
|
|
}
|
|
|
|
export default DashboardInspectorExpertComponent;
|