fix: resolve cross-page document selection issue in metadata batch edit (#23000)

Co-authored-by: crazywoola <427733928@qq.com>
This commit is contained in:
Guangdong Liu
2025-07-27 09:22:36 +08:00
committed by GitHub
parent d776a7cde7
commit 665fcad655
3 changed files with 18 additions and 7 deletions

View File

@@ -9,12 +9,14 @@ import { t } from 'i18next'
type Props = {
datasetId: string
docList: SimpleDocumentDetail[]
selectedDocumentIds?: string[]
onUpdate: () => void
}
const useBatchEditDocumentMetadata = ({
datasetId,
docList,
selectedDocumentIds,
onUpdate,
}: Props) => {
const [isShowEditModal, {
@@ -79,9 +81,12 @@ const useBatchEditDocumentMetadata = ({
return false
})
const res: MetadataBatchEditToServer = docList.map((item, i) => {
// the new metadata will override the old one
const oldMetadataList = metaDataList[i]
// Use selectedDocumentIds if available, otherwise fall back to docList
const documentIds = selectedDocumentIds || docList.map(doc => doc.id)
const res: MetadataBatchEditToServer = documentIds.map((documentId) => {
// Find the document in docList to get its metadata
const docIndex = docList.findIndex(doc => doc.id === documentId)
const oldMetadataList = docIndex >= 0 ? metaDataList[docIndex] : []
let newMetadataList: MetadataItemWithValue[] = [...oldMetadataList, ...addedList]
.filter((item) => {
return !removedList.find(removedItem => removedItem.id === item.id)
@@ -108,7 +113,7 @@ const useBatchEditDocumentMetadata = ({
})
return {
document_id: item.id,
document_id: documentId,
metadata_list: newMetadataList,
}
})