1
0
Fork 0
mirror of synced 2024-07-06 15:00:49 +12:00

Merge pull request #13217 from Budibase/fix/13199-deleted-rows-issue

Fix issue with invalid IDs leading to inability to emit rows when bulk deleting
This commit is contained in:
Michael Drury 2024-03-08 13:34:39 +00:00 committed by GitHub
commit 64dd8cf054
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 21 additions and 3 deletions

View file

@ -1,11 +1,12 @@
import { context } from "@budibase/backend-core"
import { isExternalTableID } from "../../../integrations/utils"
import { APP_PREFIX, DocumentType } from "../../../db/utils"
import { Row } from "@budibase/types"
export async function addRev(
body: { _id?: string; _rev?: string },
tableId?: string
) {
): Promise<Row> {
if (!body._id || (tableId && isExternalTableID(tableId))) {
return body
}

View file

@ -128,7 +128,10 @@ export async function bulkDestroy(ctx: UserCtx) {
)
}
const responses = await Promise.all(promises)
return { response: { ok: true }, rows: responses.map(resp => resp.row) }
const finalRows = responses
.map(resp => resp.row)
.filter(row => row && row._id)
return { response: { ok: true }, rows: finalRows }
}
export async function fetchEnrichedRow(ctx: UserCtx) {

View file

@ -131,7 +131,10 @@ async function processDeleteRowsRequest(ctx: UserCtx<DeleteRowRequest>) {
: fixRow(processedRow, ctx.params)
})
return await Promise.all(processedRows)
const responses = await Promise.allSettled(processedRows)
return responses
.filter(resp => resp.status === "fulfilled")
.map(resp => (resp as PromiseFulfilledResult<Row>).value)
}
async function deleteRows(ctx: UserCtx<DeleteRowRequest>) {

View file

@ -636,6 +636,17 @@ describe.each([
expect(res[0]._id).toEqual(createdRow._id)
await assertRowUsage(rowUsage - 1)
})
it("should be able to bulk delete rows, including a row that doesn't exist", async () => {
const createdRow = await config.createRow()
const res = await config.api.row.bulkDelete(table._id!, {
rows: [createdRow, { _id: "2" }],
})
expect(res[0]._id).toEqual(createdRow._id)
expect(res.length).toEqual(1)
})
})
describe("validate", () => {