2025-09-21 15:11:12 +00:00
|
|
|
|
import { useCallback, useEffect, useMemo, useRef, useState } from 'react'
|
2025-09-21 14:42:24 +00:00
|
|
|
|
import { GridDto } from '@/proxy/form/models'
|
2025-09-21 15:11:12 +00:00
|
|
|
|
import { captionize } from 'devextreme/core/utils/inflector'
|
2025-09-21 14:42:24 +00:00
|
|
|
|
import { useListFormCustomDataSource } from '@/shared/useListFormCustomDataSource'
|
|
|
|
|
|
import { Pagination, Select } from '@/components/ui'
|
|
|
|
|
|
import classNames from 'classnames'
|
|
|
|
|
|
import { getList } from '@/services/form.service'
|
|
|
|
|
|
import { FaInbox } from 'react-icons/fa'
|
2025-09-21 15:11:12 +00:00
|
|
|
|
import FormDevExpress from '../form/FormDevExpress'
|
|
|
|
|
|
import { GroupItem, SimpleItem } from 'devextreme/ui/form'
|
|
|
|
|
|
import { Form as FormDx } from 'devextreme-react/form'
|
|
|
|
|
|
import FormButtons from '../form/FormButtons'
|
|
|
|
|
|
import { useNavigate } from 'react-router-dom'
|
|
|
|
|
|
import { ROUTES_ENUM } from '@/routes/route.constant'
|
|
|
|
|
|
import CustomStore from 'devextreme/data/custom_store'
|
|
|
|
|
|
import { PermissionResults } from '../form/types'
|
|
|
|
|
|
import { usePermission } from '@/utils/hooks/usePermission'
|
|
|
|
|
|
import { useLocalization } from '@/utils/hooks/useLocalization'
|
2025-09-21 14:42:24 +00:00
|
|
|
|
|
|
|
|
|
|
interface CardProps {
|
|
|
|
|
|
listFormCode: string
|
|
|
|
|
|
searchParams?: URLSearchParams
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type Option = {
|
|
|
|
|
|
value: number
|
|
|
|
|
|
label: string
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const CardItem = ({
|
2025-09-21 15:11:12 +00:00
|
|
|
|
isSubForm,
|
2025-09-21 14:42:24 +00:00
|
|
|
|
row,
|
|
|
|
|
|
gridDto,
|
|
|
|
|
|
listFormCode,
|
2025-09-21 15:11:12 +00:00
|
|
|
|
dataSource,
|
|
|
|
|
|
refreshData,
|
2025-09-21 14:42:24 +00:00
|
|
|
|
}: {
|
2025-09-21 15:11:12 +00:00
|
|
|
|
isSubForm?: boolean
|
2025-09-21 14:42:24 +00:00
|
|
|
|
row: any
|
|
|
|
|
|
gridDto: GridDto
|
|
|
|
|
|
listFormCode: string
|
2025-09-21 15:11:12 +00:00
|
|
|
|
dataSource: CustomStore
|
|
|
|
|
|
refreshData: () => void
|
2025-09-21 14:42:24 +00:00
|
|
|
|
}) => {
|
2025-09-21 15:11:12 +00:00
|
|
|
|
const [formData, setFormData] = useState(row)
|
|
|
|
|
|
const refForm = useRef<FormDx>(null)
|
|
|
|
|
|
const navigate = useNavigate()
|
|
|
|
|
|
const { checkPermission } = usePermission()
|
|
|
|
|
|
const { translate } = useLocalization()
|
|
|
|
|
|
|
2025-09-21 14:42:24 +00:00
|
|
|
|
const keyField = gridDto.gridOptions.keyFieldName
|
|
|
|
|
|
const rowId = row[keyField!]
|
|
|
|
|
|
|
2025-09-21 15:11:12 +00:00
|
|
|
|
const formItems: GroupItem[] = useMemo(() => {
|
|
|
|
|
|
if (!gridDto) return []
|
|
|
|
|
|
|
|
|
|
|
|
const items: SimpleItem[] = gridDto.columnFormats
|
|
|
|
|
|
.filter((col) => col.visible && col.listOrderNo > 0)
|
|
|
|
|
|
.sort((a, b) => a.listOrderNo - b.listOrderNo)
|
|
|
|
|
|
.slice(0, 10)
|
|
|
|
|
|
.map((col) => ({
|
|
|
|
|
|
dataField: col.fieldName,
|
|
|
|
|
|
label: { text: captionize(col.captionName || col.fieldName!) },
|
|
|
|
|
|
}))
|
|
|
|
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
|
{
|
|
|
|
|
|
itemType: 'group',
|
|
|
|
|
|
colCount: 1,
|
|
|
|
|
|
items: items,
|
|
|
|
|
|
},
|
|
|
|
|
|
]
|
|
|
|
|
|
}, [gridDto])
|
|
|
|
|
|
|
|
|
|
|
|
const permissionResults: PermissionResults = {
|
|
|
|
|
|
c:
|
|
|
|
|
|
gridDto?.gridOptions.editingOptionDto.allowAdding === true &&
|
|
|
|
|
|
checkPermission(gridDto?.gridOptions.permissionDto.c),
|
|
|
|
|
|
r: checkPermission(gridDto?.gridOptions.permissionDto.r),
|
|
|
|
|
|
u:
|
|
|
|
|
|
gridDto?.gridOptions.editingOptionDto.allowUpdating === true &&
|
|
|
|
|
|
checkPermission(gridDto?.gridOptions.permissionDto.u),
|
|
|
|
|
|
d:
|
|
|
|
|
|
gridDto?.gridOptions.editingOptionDto.allowDeleting === true &&
|
|
|
|
|
|
checkPermission(gridDto?.gridOptions.permissionDto.d),
|
|
|
|
|
|
e: checkPermission(gridDto?.gridOptions.permissionDto.e),
|
|
|
|
|
|
i: checkPermission(gridDto?.gridOptions.permissionDto.i),
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const onActionEdit = () => {
|
|
|
|
|
|
navigate(
|
|
|
|
|
|
ROUTES_ENUM.protected.admin.formEdit
|
|
|
|
|
|
.replace(':listFormCode', listFormCode)
|
|
|
|
|
|
.replace(':id', rowId!),
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const onActionNew = () => {
|
|
|
|
|
|
navigate(ROUTES_ENUM.protected.admin.formNew.replace(':listFormCode', listFormCode))
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-09-21 14:42:24 +00:00
|
|
|
|
return (
|
2025-09-21 15:11:12 +00:00
|
|
|
|
<div className="bg-white dark:bg-neutral-800 border dark:border-neutral-700 flex flex-col groupp p-2">
|
|
|
|
|
|
<div className={`flex items-center mb-2 ${isSubForm ? 'justify-center' : 'justify-between'}`}>
|
|
|
|
|
|
{!isSubForm && <h3>{translate('::' + gridDto?.gridOptions.title)}</h3>}
|
|
|
|
|
|
{permissionResults && (
|
|
|
|
|
|
<FormButtons
|
|
|
|
|
|
isSubForm={true}
|
|
|
|
|
|
mode="view"
|
|
|
|
|
|
listFormCode={listFormCode}
|
|
|
|
|
|
id={rowId}
|
|
|
|
|
|
gridDto={gridDto}
|
|
|
|
|
|
commandColumnData={{ buttons: [] }}
|
|
|
|
|
|
dataSource={dataSource}
|
|
|
|
|
|
permissions={permissionResults}
|
|
|
|
|
|
handleSubmit={() => ({})}
|
|
|
|
|
|
refreshData={refreshData}
|
|
|
|
|
|
getSelectedRowKeys={() => [rowId]}
|
|
|
|
|
|
getSelectedRowsData={() => [row]}
|
|
|
|
|
|
getFilter={() => null}
|
|
|
|
|
|
onActionEdit={onActionEdit}
|
|
|
|
|
|
onActionNew={onActionNew}
|
|
|
|
|
|
/>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
2025-09-21 14:42:24 +00:00
|
|
|
|
<div className="flex-grow">
|
2025-09-21 15:11:12 +00:00
|
|
|
|
<FormDevExpress
|
|
|
|
|
|
mode="view"
|
|
|
|
|
|
refForm={refForm}
|
|
|
|
|
|
formData={formData}
|
|
|
|
|
|
formItems={formItems}
|
|
|
|
|
|
setFormData={setFormData}
|
|
|
|
|
|
/>
|
2025-09-21 14:42:24 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const Card = ({ listFormCode, searchParams }: CardProps) => {
|
|
|
|
|
|
const { createSelectDataSource } = useListFormCustomDataSource({})
|
|
|
|
|
|
const [gridDto, setGridDto] = useState<GridDto>()
|
|
|
|
|
|
const [data, setData] = useState<any[]>([])
|
|
|
|
|
|
const [totalCount, setTotalCount] = useState(0)
|
|
|
|
|
|
const [currentPage, setCurrentPage] = useState(1)
|
|
|
|
|
|
const [pageSize, setPageSize] = useState(20)
|
|
|
|
|
|
const [pageSizeOptions, setPageSizeOptions] = useState<Option[]>([])
|
2025-09-21 15:11:12 +00:00
|
|
|
|
const [dataSource, setDataSource] = useState<CustomStore>()
|
2025-09-21 14:42:24 +00:00
|
|
|
|
|
|
|
|
|
|
const onPageSizeSelect = ({ value }: Option) => {
|
|
|
|
|
|
setPageSize(value)
|
|
|
|
|
|
setCurrentPage(1)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const onPageChange = (page: number) => {
|
|
|
|
|
|
setCurrentPage(page)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-09-21 15:11:12 +00:00
|
|
|
|
useEffect(() => {
|
|
|
|
|
|
getList({ listFormCode }).then((res: any) => setGridDto(res.data))
|
|
|
|
|
|
}, [listFormCode])
|
2025-09-21 14:42:24 +00:00
|
|
|
|
|
2025-09-21 15:11:12 +00:00
|
|
|
|
useEffect(() => {
|
|
|
|
|
|
if (gridDto) {
|
|
|
|
|
|
const store = createSelectDataSource(gridDto.gridOptions, listFormCode, searchParams)
|
|
|
|
|
|
setDataSource(store)
|
|
|
|
|
|
}
|
|
|
|
|
|
}, [gridDto, listFormCode, searchParams, createSelectDataSource])
|
|
|
|
|
|
|
|
|
|
|
|
const loadData = useCallback(() => {
|
|
|
|
|
|
if (!dataSource) return
|
2025-09-21 14:42:24 +00:00
|
|
|
|
|
|
|
|
|
|
const loadOptions = {
|
|
|
|
|
|
skip: (currentPage - 1) * pageSize,
|
|
|
|
|
|
take: pageSize,
|
|
|
|
|
|
requireTotalCount: true,
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-09-21 15:11:12 +00:00
|
|
|
|
dataSource.load(loadOptions).then((res: any) => {
|
2025-09-21 14:42:24 +00:00
|
|
|
|
setData(res.data)
|
|
|
|
|
|
setTotalCount(res.totalCount || 0)
|
|
|
|
|
|
})
|
2025-09-21 15:11:12 +00:00
|
|
|
|
}, [dataSource, currentPage, pageSize])
|
2025-09-21 14:42:24 +00:00
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
2025-09-21 15:11:12 +00:00
|
|
|
|
if (dataSource) {
|
|
|
|
|
|
loadData()
|
|
|
|
|
|
}
|
|
|
|
|
|
}, [dataSource, loadData])
|
2025-09-21 14:42:24 +00:00
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
|
if (!gridDto) return
|
|
|
|
|
|
|
|
|
|
|
|
const pagerOptions = gridDto.gridOptions.pagerOptionDto
|
2025-09-21 15:11:12 +00:00
|
|
|
|
const allowedSizes = pagerOptions?.allowedPageSizes
|
|
|
|
|
|
?.split(',')
|
|
|
|
|
|
.map((s) => Number(s.trim()))
|
|
|
|
|
|
.filter((n) => !isNaN(n) && n > 0) || [20, 50, 100]
|
2025-09-21 14:42:24 +00:00
|
|
|
|
|
|
|
|
|
|
setPageSizeOptions(allowedSizes.map((size) => ({ value: size, label: `${size} page` })))
|
|
|
|
|
|
}, [gridDto, listFormCode, searchParams])
|
|
|
|
|
|
|
|
|
|
|
|
if (!gridDto) return null
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
|
<>
|
|
|
|
|
|
{data.length === 0 && (
|
|
|
|
|
|
<div className="flex flex-col items-center justify-center p-10 bg-gray-50 dark:bg-neutral-800/50 rounded-md border-2 border-dashed border-gray-200 dark:border-neutral-700">
|
|
|
|
|
|
<div className="text-center">
|
|
|
|
|
|
<FaInbox className="mx-auto h-12 w-12 text-gray-400 dark:text-gray-500" />
|
|
|
|
|
|
<p className="mt-4 text-lg font-semibold text-gray-700 dark:text-gray-300">
|
|
|
|
|
|
Kayıt Bulunamadı
|
|
|
|
|
|
</p>
|
|
|
|
|
|
<p className="text-sm text-gray-500 dark:text-gray-400 mt-1">
|
|
|
|
|
|
Görüntülenecek herhangi bir veri yok.
|
|
|
|
|
|
</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 2xl:grid-cols-4 gap-4">
|
2025-09-21 15:11:12 +00:00
|
|
|
|
{dataSource &&
|
|
|
|
|
|
data.map((row, idx) => {
|
|
|
|
|
|
const keyField = gridDto.gridOptions.keyFieldName
|
|
|
|
|
|
const rowId = row[keyField!]
|
2025-09-21 14:42:24 +00:00
|
|
|
|
|
2025-09-21 15:11:12 +00:00
|
|
|
|
return (
|
|
|
|
|
|
<CardItem
|
|
|
|
|
|
isSubForm={true}
|
|
|
|
|
|
key={rowId || idx}
|
|
|
|
|
|
row={row}
|
|
|
|
|
|
gridDto={gridDto}
|
|
|
|
|
|
listFormCode={listFormCode}
|
|
|
|
|
|
dataSource={dataSource}
|
|
|
|
|
|
refreshData={loadData}
|
|
|
|
|
|
/>
|
|
|
|
|
|
)
|
|
|
|
|
|
})}
|
2025-09-21 14:42:24 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{gridDto.gridOptions.pagerOptionDto?.visible && totalCount > pageSize && (
|
|
|
|
|
|
<div className={classNames('flex items-center justify-between border-t-1 gap-4 mt-4')}>
|
|
|
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
|
|
<span className="text-xs text-gray-600 dark:text-gray-300">
|
|
|
|
|
|
Toplam {totalCount} kayıt
|
|
|
|
|
|
</span>
|
|
|
|
|
|
<Select
|
|
|
|
|
|
size="xs"
|
|
|
|
|
|
menuPlacement="top"
|
|
|
|
|
|
value={pageSizeOptions.find((o) => o.value === pageSize)}
|
|
|
|
|
|
options={pageSizeOptions}
|
|
|
|
|
|
onChange={(selected) => onPageSizeSelect(selected as Option)}
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<Pagination
|
|
|
|
|
|
currentPage={currentPage}
|
|
|
|
|
|
total={totalCount}
|
|
|
|
|
|
pageSize={pageSize}
|
|
|
|
|
|
onChange={onPageChange}
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</>
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-09-21 15:11:12 +00:00
|
|
|
|
export default Card
|