Don't trim any fields on view crud endpoints

This commit is contained in:
Adria Navarro 2024-07-02 13:58:16 +02:00
parent 6f0417126c
commit 882a056cd9
2 changed files with 16 additions and 25 deletions

View File

@ -33,11 +33,6 @@ async function parseSchema(view: CreateViewRequest) {
p[fieldName] = fieldSchema p[fieldName] = fieldSchema
return p return p
}, {} as Record<string, RequiredKeys<ViewUIFieldMetadata>>) }, {} as Record<string, RequiredKeys<ViewUIFieldMetadata>>)
for (let [key, column] of Object.entries(finalViewSchema)) {
if (!column.visible && !column.readonly) {
delete finalViewSchema[key]
}
}
return finalViewSchema return finalViewSchema
} }

View File

@ -218,6 +218,10 @@ describe.each([
order: 1, order: 1,
width: 100, width: 100,
}, },
Category: {
visible: false,
icon: "ic",
},
}, },
id: createdView.id, id: createdView.id,
version: 2, version: 2,
@ -269,9 +273,8 @@ describe.each([
...newView, ...newView,
schema: { schema: {
id: { visible: true }, id: { visible: true },
Price: { Price: { visible: true },
visible: true, Category: { visible: false },
},
}, },
id: expect.any(String), id: expect.any(String),
version: 2, version: 2,
@ -759,6 +762,7 @@ describe.each([
order: 1, order: 1,
width: 100, width: 100,
}, },
Category: { visible: false, icon: "ic" },
}, },
id: view.id, id: view.id,
version: 2, version: 2,
@ -873,7 +877,8 @@ describe.each([
await db.getDB(config.appId!).put(tableToUpdate) await db.getDB(config.appId!).put(tableToUpdate)
view = await config.api.viewV2.get(view.id) view = await config.api.viewV2.get(view.id)
await config.api.viewV2.update({ await config.api.viewV2.update(
{
...view, ...view,
schema: { schema: {
...view.schema, ...view.schema,
@ -881,22 +886,14 @@ describe.each([
visible: false, visible: false,
}, },
}, },
}) },
{
expect(await config.api.viewV2.get(view.id)).toEqual( status: 400,
expect.objectContaining({ body: {
schema: { message: 'You can\'t hide "id" because it is a required field.',
id: expect.objectContaining({ status: 400,
visible: false,
}),
Price: expect.objectContaining({
visible: false,
}),
Category: expect.objectContaining({
visible: true,
}),
}, },
}) }
) )
}) })
}) })
@ -938,7 +935,6 @@ describe.each([
Category: { visible: true }, Category: { visible: true },
}, },
}) })
expect(res.schema?.Price).toBeUndefined()
const view = await config.api.viewV2.get(res.id) const view = await config.api.viewV2.get(res.id)
const updatedTable = await config.api.table.get(table._id!) const updatedTable = await config.api.table.get(table._id!)