1
0
Fork 0
mirror of synced 2024-10-04 03:54:37 +13:00

Throw exception when updating non ui fields

This commit is contained in:
Adria Navarro 2023-08-01 11:31:58 +02:00
parent bce75c91a6
commit d440291ebc
2 changed files with 98 additions and 11 deletions

View file

@ -9,9 +9,40 @@ import {
RequiredKeys,
} from "@budibase/types"
export async function create(ctx: Ctx<CreateViewRequest, ViewResponse>) {
const view = ctx.request.body
const { tableId } = view
async function parseSchemaUI(ctx: Ctx, view: CreateViewRequest) {
if (!view.schema) {
return
}
function hasOverrides(
newObj: Record<string, any>,
existingObj: Record<string, any>
) {
for (const [key, value] of Object.entries(newObj)) {
if (typeof value === "object") {
if (hasOverrides(value, existingObj[key] || {})) {
return true
}
} else if (value !== existingObj[key]) {
return true
}
}
return false
}
const table = await sdk.tables.getTable(view.tableId)
for (const [
fieldName,
{ order, width, visible, icon, ...schemaNonUI },
] of Object.entries(view.schema)) {
const overrides = hasOverrides(schemaNonUI, table.schema[fieldName])
if (overrides) {
ctx.throw(
400,
"This endpoint does not support overriding non UI fields in the schema"
)
}
}
const schemaUI =
view.schema &&
@ -24,6 +55,14 @@ export async function create(ctx: Ctx<CreateViewRequest, ViewResponse>) {
}
return p
}, {} as Record<string, RequiredKeys<UIFieldMetadata>>)
return schemaUI
}
export async function create(ctx: Ctx<CreateViewRequest, ViewResponse>) {
const view = ctx.request.body
const { tableId } = view
const schemaUI = await parseSchemaUI(ctx, view)
const parsedView: Omit<ViewV2, "id" | "version"> = {
name: view.name,

View file

@ -95,15 +95,15 @@ describe("/v2/views", () => {
name: generator.name(),
tableId: config.table!._id!,
schema: {
name: {
name: "name",
type: FieldType.STRING,
Price: {
name: "Price",
type: FieldType.NUMBER,
visible: true,
order: 1,
width: 100,
},
lastname: {
name: "lastname",
Category: {
name: "Category",
type: FieldType.STRING,
visible: false,
icon: "ic",
@ -116,14 +116,14 @@ describe("/v2/views", () => {
expect(await config.api.viewV2.get(createdView.id)).toEqual({
...newView,
schema: undefined,
columns: ["name", "lastname"],
columns: ["Price", "Category"],
schemaUI: {
name: {
Price: {
visible: true,
order: 1,
width: 100,
},
lastname: {
Category: {
visible: false,
icon: "ic",
},
@ -132,6 +132,54 @@ describe("/v2/views", () => {
version: 2,
})
})
it("throw an exception if the schema overrides a non UI field", async () => {
const newView: CreateViewRequest = {
name: generator.name(),
tableId: config.table!._id!,
schema: {
Price: {
name: "Price",
type: FieldType.NUMBER,
visible: true,
},
Category: {
name: "Category",
type: FieldType.STRING,
constraints: {
type: "string",
presence: true,
},
},
},
}
await config.api.viewV2.create(newView, {
expectStatus: 400,
})
})
it("will not throw an exception if the schema is 'deleting' non UI fields", async () => {
const newView: CreateViewRequest = {
name: generator.name(),
tableId: config.table!._id!,
schema: {
Price: {
name: "Price",
type: FieldType.NUMBER,
visible: true,
},
Category: {
name: "Category",
type: FieldType.STRING,
},
},
}
await config.api.viewV2.create(newView, {
expectStatus: 201,
})
})
})
describe("update", () => {