ragflow
/
web
/src
/pages
/add-knowledge
/components
/knowledge-file
/parsing-action-cell
/index.tsx
balibabu
feat: add chunkText to messageText to distinguish table rows and when parsing, the delete and other buttons are set to disabled. (#130)
825281b
import showDeleteConfirm from '@/components/deleting-confirm'; | |
import { IKnowledgeFile } from '@/interfaces/database/knowledge'; | |
import { DeleteOutlined, EditOutlined, ToolOutlined } from '@ant-design/icons'; | |
import { Button, Dropdown, MenuProps, Space, Tooltip } from 'antd'; | |
import { useDispatch } from 'umi'; | |
import { isParserRunning } from '../utils'; | |
import styles from './index.less'; | |
interface IProps { | |
knowledgeBaseId: string; | |
record: IKnowledgeFile; | |
setDocumentAndParserId: () => void; | |
} | |
const ParsingActionCell = ({ | |
knowledgeBaseId, | |
record, | |
setDocumentAndParserId, | |
}: IProps) => { | |
const dispatch = useDispatch(); | |
const documentId = record.id; | |
const isRunning = isParserRunning(record.run); | |
const removeDocument = () => { | |
dispatch({ | |
type: 'kFModel/document_rm', | |
payload: { | |
doc_id: documentId, | |
kb_id: knowledgeBaseId, | |
}, | |
}); | |
}; | |
const onRmDocument = () => { | |
if (!isRunning) { | |
showDeleteConfirm({ onOk: removeDocument }); | |
} | |
}; | |
const setCurrentRecord = () => { | |
dispatch({ | |
type: 'kFModel/setCurrentRecord', | |
payload: record, | |
}); | |
}; | |
const showSegmentSetModal = () => { | |
dispatch({ | |
type: 'kFModel/updateState', | |
payload: { | |
isShowSegmentSetModal: true, | |
}, | |
}); | |
}; | |
const showRenameModal = () => { | |
if (!isRunning) { | |
setCurrentRecord(); | |
dispatch({ | |
type: 'kFModel/setIsShowRenameModal', | |
payload: true, | |
}); | |
} | |
}; | |
const chunkItems: MenuProps['items'] = [ | |
{ | |
key: '1', | |
label: ( | |
<div> | |
<Button type="link" onClick={showSegmentSetModal}> | |
Category | |
</Button> | |
</div> | |
), | |
}, | |
]; | |
return ( | |
<Space size={0}> | |
<Dropdown | |
menu={{ items: chunkItems }} | |
trigger={['click']} | |
disabled={isRunning} | |
> | |
<Button | |
type="text" | |
onClick={setDocumentAndParserId} | |
className={styles.iconButton} | |
> | |
<ToolOutlined size={20} /> | |
</Button> | |
</Dropdown> | |
<Tooltip title="Rename"> | |
<Button | |
type="text" | |
disabled={isRunning} | |
onClick={showRenameModal} | |
className={styles.iconButton} | |
> | |
<EditOutlined size={20} /> | |
</Button> | |
</Tooltip> | |
<Button | |
type="text" | |
disabled={isRunning} | |
onClick={onRmDocument} | |
className={styles.iconButton} | |
> | |
<DeleteOutlined size={20} /> | |
</Button> | |
</Space> | |
); | |
}; | |
export default ParsingActionCell; | |