mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-05 03:18:51 +00:00
### What problem does this PR solve? fix: cannot save the system model setting #468 feat: rename file in FileManager feat: add FileManager feat: override useSelector type ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
92 lines
2.2 KiB
TypeScript
92 lines
2.2 KiB
TypeScript
import { useShowDeleteConfirm, useTranslate } from '@/hooks/commonHooks';
|
|
import { api_host } from '@/utils/api';
|
|
import { downloadFile } from '@/utils/fileUtil';
|
|
import {
|
|
DeleteOutlined,
|
|
DownloadOutlined,
|
|
EditOutlined,
|
|
ToolOutlined,
|
|
} from '@ant-design/icons';
|
|
import { Button, Space, Tooltip } from 'antd';
|
|
|
|
import { useRemoveFile } from '@/hooks/fileManagerHooks';
|
|
import { IFile } from '@/interfaces/database/file-manager';
|
|
import styles from './index.less';
|
|
|
|
interface IProps {
|
|
record: IFile;
|
|
setCurrentRecord: (record: any) => void;
|
|
showRenameModal: (record: IFile) => void;
|
|
}
|
|
|
|
const ActionCell = ({ record, setCurrentRecord, showRenameModal }: IProps) => {
|
|
const documentId = record.id;
|
|
const beingUsed = false;
|
|
const { t } = useTranslate('knowledgeDetails');
|
|
const removeDocument = useRemoveFile();
|
|
const showDeleteConfirm = useShowDeleteConfirm();
|
|
|
|
const onRmDocument = () => {
|
|
if (!beingUsed) {
|
|
showDeleteConfirm({
|
|
onOk: () => {
|
|
return removeDocument([documentId]);
|
|
},
|
|
});
|
|
}
|
|
};
|
|
|
|
const onDownloadDocument = () => {
|
|
downloadFile({
|
|
url: `${api_host}/document/get/${documentId}`,
|
|
filename: record.name,
|
|
});
|
|
};
|
|
|
|
const setRecord = () => {
|
|
setCurrentRecord(record);
|
|
};
|
|
|
|
const onShowRenameModal = () => {
|
|
setRecord();
|
|
showRenameModal(record);
|
|
};
|
|
|
|
return (
|
|
<Space size={0}>
|
|
<Button type="text" className={styles.iconButton}>
|
|
<ToolOutlined size={20} />
|
|
</Button>
|
|
|
|
<Tooltip title={t('rename', { keyPrefix: 'common' })}>
|
|
<Button
|
|
type="text"
|
|
disabled={beingUsed}
|
|
onClick={onShowRenameModal}
|
|
className={styles.iconButton}
|
|
>
|
|
<EditOutlined size={20} />
|
|
</Button>
|
|
</Tooltip>
|
|
<Button
|
|
type="text"
|
|
disabled={beingUsed}
|
|
onClick={onRmDocument}
|
|
className={styles.iconButton}
|
|
>
|
|
<DeleteOutlined size={20} />
|
|
</Button>
|
|
<Button
|
|
type="text"
|
|
disabled={beingUsed}
|
|
onClick={onDownloadDocument}
|
|
className={styles.iconButton}
|
|
>
|
|
<DownloadOutlined size={20} />
|
|
</Button>
|
|
</Space>
|
|
);
|
|
};
|
|
|
|
export default ActionCell;
|