import NewDocumentLink from '@/components/new-document-link'; import { useTranslate } from '@/hooks/common-hooks'; import { useSelectTestingResult } from '@/hooks/knowledge-hooks'; import { ITestingDocument } from '@/interfaces/database/knowledge'; import { EyeOutlined } from '@ant-design/icons'; import { Button, Table, TableProps, Tooltip } from 'antd'; interface IProps { handleTesting: (ids: string[]) => void; setSelectedDocumentIds: (ids: string[]) => void; } const SelectFiles = ({ setSelectedDocumentIds, handleTesting }: IProps) => { const { documents } = useSelectTestingResult(); const { t } = useTranslate('fileManager'); const columns: TableProps['columns'] = [ { title: 'Name', dataIndex: 'doc_name', key: 'doc_name', render: (text) =>

{text}

, }, { title: 'Hits', dataIndex: 'count', key: 'count', width: 80, }, { title: 'View', key: 'view', width: 50, render: (_, { doc_id, doc_name }) => ( ), }, ]; const rowSelection = { onChange: (selectedRowKeys: React.Key[]) => { handleTesting(selectedRowKeys as string[]); setSelectedDocumentIds(selectedRowKeys as string[]); }, getCheckboxProps: (record: ITestingDocument) => ({ disabled: record.doc_name === 'Disabled User', // Column configuration not to be checked name: record.doc_name, }), }; return ( ); }; export default SelectFiles;