ConceptPortal-public/rsconcept/frontend/src/pages/RSFormsPage/RSFormsTable.tsx

85 lines
2.2 KiB
TypeScript
Raw Normal View History

2023-07-15 17:46:19 +03:00
import { useMemo } from 'react';
import { useIntl } from 'react-intl';
2023-07-25 23:08:10 +03:00
import { useNavigate } from 'react-router-dom';
2023-07-15 17:46:19 +03:00
import DataTableThemed from '../../components/Common/DataTableThemed';
import { useUsers } from '../../context/UsersContext';
2023-07-25 23:08:10 +03:00
import { type IRSForm } from '../../utils/models'
2023-07-15 17:46:19 +03:00
interface RSFormsTableProps {
schemas: IRSForm[]
}
2023-07-25 23:08:10 +03:00
function RSFormsTable({ schemas }: RSFormsTableProps) {
2023-07-15 17:46:19 +03:00
const navigate = useNavigate();
const intl = useIntl();
const { getUserLabel } = useUsers();
const openRSForm = (schema: IRSForm, event: React.MouseEvent<Element, MouseEvent>) => {
navigate(`/rsforms/${schema.id}`);
2023-07-15 17:46:19 +03:00
};
2023-07-25 23:08:10 +03:00
const columns = useMemo(() =>
2023-07-15 17:46:19 +03:00
[
{
name: 'Шифр',
id: 'alias',
maxWidth: '140px',
selector: (schema: IRSForm) => schema.alias,
sortable: true,
reorder: true
},
{
name: 'Название',
id: 'title',
minWidth: '50%',
selector: (schema: IRSForm) => schema.title,
sortable: true,
reorder: true
},
{
name: 'Владелец',
id: 'owner',
2023-07-25 23:08:10 +03:00
selector: (schema: IRSForm) => schema.owner ?? 0,
2023-07-15 17:46:19 +03:00
format: (schema: IRSForm) => {
return getUserLabel(schema.owner);
},
sortable: true,
reorder: true
},
{
name: 'Обновлена',
id: 'time_update',
selector: (row: IRSForm) => row.time_update,
format: (row: IRSForm) => new Date(row.time_update).toLocaleString(intl.locale),
sortable: true,
reorder: true
}
], [intl, getUserLabel]
);
return (
<DataTableThemed
columns={columns}
data={schemas}
defaultSortFieldId='time_update'
defaultSortAsc={false}
striped
highlightOnHover
pointerOnHover
2023-07-22 12:24:14 +03:00
noDataComponent={<span className='flex flex-col justify-center p-2 text-center'>
2023-07-22 12:24:14 +03:00
<p>Список схем пуст</p>
<p>Измените фильтр</p>
</span>}
2023-07-15 17:46:19 +03:00
pagination
paginationPerPage={50}
paginationRowsPerPageOptions={[10, 20, 30, 50, 100]}
onRowClicked={openRSForm}
/>
);
}
export default RSFormsTable;