ragflow/web/src/pages/files/action-cell.tsx
balibabu 1657755b5d
Feat: Adjust the operation cell of the table on the file management page and dataset page #3221. (#7526)
### What problem does this PR solve?

Feat: Adjust the operation cell of the table on the file management page
and dataset page #3221.
### Type of change


- [x] New Feature (non-breaking change which adds functionality)
2025-05-08 15:25:26 +08:00

127 lines
3.8 KiB
TypeScript

import { ConfirmDeleteDialog } from '@/components/confirm-delete-dialog';
import NewDocumentLink from '@/components/new-document-link';
import { Button } from '@/components/ui/button';
import { useDownloadFile } from '@/hooks/file-manager-hooks';
import { IFile } from '@/interfaces/database/file-manager';
import {
getExtension,
isSupportedPreviewDocumentType,
} from '@/utils/document-util';
import { CellContext } from '@tanstack/react-table';
import {
ArrowDownToLine,
Eye,
FolderInput,
FolderPen,
Link2,
Trash2,
} from 'lucide-react';
import { useCallback } from 'react';
import {
UseHandleConnectToKnowledgeReturnType,
UseRenameCurrentFileReturnType,
} from './hooks';
import { UseMoveDocumentShowType } from './use-move-file';
import { isFolderType } from './util';
type IProps = Pick<CellContext<IFile, unknown>, 'row'> &
Pick<UseHandleConnectToKnowledgeReturnType, 'showConnectToKnowledgeModal'> &
Pick<UseRenameCurrentFileReturnType, 'showFileRenameModal'> &
UseMoveDocumentShowType;
export function ActionCell({
row,
showConnectToKnowledgeModal,
showFileRenameModal,
showMoveFileModal,
}: IProps) {
const record = row.original;
const documentId = record.id;
const { downloadFile } = useDownloadFile();
const isFolder = isFolderType(record.type);
const extension = getExtension(record.name);
const handleShowConnectToKnowledgeModal = useCallback(() => {
showConnectToKnowledgeModal(record);
}, [record, showConnectToKnowledgeModal]);
const onDownloadDocument = useCallback(() => {
downloadFile({
id: documentId,
filename: record.name,
});
}, [documentId, downloadFile, record.name]);
const handleShowFileRenameModal = useCallback(() => {
showFileRenameModal(record);
}, [record, showFileRenameModal]);
const handleShowMoveFileModal = useCallback(() => {
showMoveFileModal([record.id]);
}, [record, showMoveFileModal]);
return (
<section className="flex gap-4 items-center text-text-sub-title-invert">
<Button
variant="ghost"
size={'sm'}
onClick={handleShowConnectToKnowledgeModal}
>
<Link2 />
</Button>
<Button variant="ghost" size={'sm'} onClick={handleShowMoveFileModal}>
<FolderInput />
</Button>
<Button variant="ghost" size={'sm'} onClick={handleShowFileRenameModal}>
<FolderPen />
</Button>
{isFolder || (
<Button variant={'ghost'} size={'sm'} onClick={onDownloadDocument}>
<ArrowDownToLine />
</Button>
)}
{isSupportedPreviewDocumentType(extension) && (
<NewDocumentLink
documentId={documentId}
documentName={record.name}
className="text-text-sub-title-invert"
>
<Button variant={'ghost'} size={'sm'}>
<Eye />
</Button>
</NewDocumentLink>
)}
{/* <DropdownMenu>
<DropdownMenuTrigger asChild>
<Button variant="ghost" size={'sm'}>
<EllipsisVertical />
</Button>
</DropdownMenuTrigger>
<DropdownMenuContent align="end">
<DropdownMenuItem onClick={handleShowMoveFileModal}>
{t('common.move')}
</DropdownMenuItem>
<DropdownMenuSeparator />
<DropdownMenuItem onClick={handleShowFileRenameModal}>
{t('common.rename')}
</DropdownMenuItem>
<DropdownMenuSeparator />
{isFolder || (
<DropdownMenuItem onClick={onDownloadDocument}>
{t('common.download')}
</DropdownMenuItem>
)}
</DropdownMenuContent>
</DropdownMenu> */}
<ConfirmDeleteDialog>
<Button variant="ghost" size={'sm'}>
<Trash2 />
</Button>
</ConfirmDeleteDialog>
</section>
);
}