ConceptPortal-public/rsconcept/frontend/src/pages/RSFormsPage/RSFormsTable.tsx
2023-07-23 21:38:04 +03:00

85 lines
2.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { IRSForm } from '../../utils/models'
import { useNavigate } from 'react-router-dom';
import { useMemo } from 'react';
import { useIntl } from 'react-intl';
import DataTableThemed from '../../components/Common/DataTableThemed';
import { useUsers } from '../../context/UsersContext';
interface RSFormsTableProps {
schemas: IRSForm[]
}
function RSFormsTable({schemas}: RSFormsTableProps) {
const navigate = useNavigate();
const intl = useIntl();
const { getUserLabel } = useUsers();
const openRSForm = (schema: IRSForm, event: React.MouseEvent<Element, MouseEvent>) => {
navigate(`/rsforms/${schema.id}`);
};
const columns = useMemo(() =>
[
{
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',
selector: (schema: IRSForm) => schema.owner || 0,
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
noDataComponent={<span className='flex flex-col justify-center p-2 text-center'>
<p>Список схем пуст</p>
<p>Измените фильтр</p>
</span>}
pagination
paginationPerPage={50}
paginationRowsPerPageOptions={[10, 20, 30, 50, 100]}
onRowClicked={openRSForm}
/>
);
}
export default RSFormsTable;