79 lines
2.1 KiB
TypeScript
79 lines
2.1 KiB
TypeScript
import React from 'react';
|
|
import BaseIcon from '../BaseIcon';
|
|
import { mdiEye, mdiTrashCan, mdiPencilOutline } from '@mdi/js';
|
|
import axios from 'axios';
|
|
import {
|
|
GridActionsCellItem,
|
|
GridRowParams,
|
|
GridValueGetterParams,
|
|
} from '@mui/x-data-grid';
|
|
import ImageField from '../ImageField';
|
|
import { saveFile } from '../../helpers/fileSaver';
|
|
import dataFormatter from '../../helpers/dataFormatter';
|
|
import DataGridMultiSelect from '../DataGridMultiSelect';
|
|
import ListActionsPopover from '../ListActionsPopover';
|
|
|
|
import { hasPermission } from '../../helpers/userPermissions';
|
|
|
|
type Params = (id: string) => void;
|
|
|
|
export const loadColumns = async (
|
|
onDelete: Params,
|
|
entityName: string,
|
|
|
|
user,
|
|
) => {
|
|
async function callOptionsApi(entityName: string) {
|
|
if (!hasPermission(user, 'READ_' + entityName.toUpperCase())) return [];
|
|
|
|
try {
|
|
const data = await axios(`/${entityName}/autocomplete?limit=100`);
|
|
return data.data;
|
|
} catch (error) {
|
|
console.log(error);
|
|
return [];
|
|
}
|
|
}
|
|
|
|
const hasUpdatePermission = hasPermission(user, 'UPDATE_EXAMS');
|
|
|
|
return [
|
|
{
|
|
field: 'exam_date',
|
|
headerName: 'ExamDate',
|
|
flex: 1,
|
|
minWidth: 120,
|
|
filterable: false,
|
|
headerClassName: 'datagrid--header',
|
|
cellClassName: 'datagrid--cell',
|
|
|
|
editable: hasUpdatePermission,
|
|
|
|
type: 'dateTime',
|
|
valueGetter: (params: GridValueGetterParams) =>
|
|
new Date(params.row.exam_date),
|
|
},
|
|
|
|
{
|
|
field: 'actions',
|
|
type: 'actions',
|
|
minWidth: 30,
|
|
headerClassName: 'datagrid--header',
|
|
cellClassName: 'datagrid--cell',
|
|
getActions: (params: GridRowParams) => {
|
|
return [
|
|
<div key={params?.row?.id}>
|
|
<ListActionsPopover
|
|
onDelete={onDelete}
|
|
itemId={params?.row?.id}
|
|
pathEdit={`/exams/exams-edit/?id=${params?.row?.id}`}
|
|
pathView={`/exams/exams-view/?id=${params?.row?.id}`}
|
|
hasUpdatePermission={hasUpdatePermission}
|
|
/>
|
|
</div>,
|
|
];
|
|
},
|
|
},
|
|
];
|
|
};
|