WhiteNightsAdminPanel/src/pages/city/list.tsx
2025-03-16 22:18:26 +03:00

70 lines
1.6 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 {type GridColDef} from '@mui/x-data-grid'
import {CustomDataGrid} from '../../components/CustomDataGrid'
import {DeleteButton, EditButton, List, ShowButton, useDataGrid} from '@refinedev/mui'
import React from 'react'
export const CityList = () => {
const {dataGridProps} = useDataGrid({})
const columns = React.useMemo<GridColDef[]>(
() => [
{
field: 'id',
headerName: 'ID',
type: 'number',
minWidth: 50,
align: 'left',
headerAlign: 'left',
},
{
field: 'country_code',
headerName: 'Код страны',
type: 'string',
minWidth: 150,
align: 'left',
headerAlign: 'left',
},
{
field: 'country',
headerName: 'Cтрана',
type: 'string',
minWidth: 150,
align: 'left',
headerAlign: 'left',
},
{
field: 'name',
headerName: 'Название',
type: 'string',
minWidth: 150,
flex: 1,
},
{
field: 'actions',
headerName: 'Действия',
minWidth: 120,
display: 'flex',
align: 'right',
headerAlign: 'center',
sortable: false,
renderCell: function render({row}) {
return (
<>
<EditButton hideText recordItemId={row.id} />
<ShowButton hideText recordItemId={row.id} />
<DeleteButton hideText recordItemId={row.id} />
</>
)
},
},
],
[],
)
return (
<List>
<CustomDataGrid {...dataGridProps} columns={columns} />
</List>
)
}