1
0
Fork 0
mirror of synced 2024-07-20 21:55:54 +12:00

Updating dual bulkDocs call, to handle the merging of similar documents.

This commit is contained in:
mike12345567 2023-09-25 17:48:07 +01:00
parent 3d143c28a9
commit 98680f7895

View file

@ -12,6 +12,23 @@ export type FileAttributes = {
path: string
}
function mergeUpdateAndDeleteDocuments(
updateDocs: Document[],
deleteDocs: Document[]
) {
// compress the documents to create and to delete (if same ID, then just update the rev)
const finalToDelete = []
for (let deleteDoc of deleteDocs) {
const found = updateDocs.find(doc => doc._id === deleteDoc._id)
if (found) {
found._rev = deleteDoc._rev
} else {
finalToDelete.push(deleteDoc)
}
}
return [...updateDocs, ...finalToDelete]
}
async function removeImportableDocuments(db: Database) {
// get the references to the documents, not the whole document
const docPromises = []
@ -74,11 +91,11 @@ export async function updateWithExport(
importObjStoreContents: false,
})
// get the documents to copy
const documents = await getImportableDocuments(tempDb)
const toUpdate = await getImportableDocuments(tempDb)
// clear out the old documents
const toDelete = await removeImportableDocuments(appDb)
// now write the import documents
await appDb.bulkDocs([...toDelete, documents])
// now bulk update documents - add new ones, delete old ones and update common ones
await appDb.bulkDocs(mergeUpdateAndDeleteDocuments(toUpdate, toDelete))
} finally {
await tempDb.destroy()
}