1
0
Fork 0
mirror of synced 2024-08-12 08:31:27 +12:00

Default state of view is no data returned.

This commit is contained in:
mike12345567 2023-08-11 16:01:53 +01:00
parent 9e0964a5e3
commit 672e370904
2 changed files with 14 additions and 16 deletions

View file

@ -82,18 +82,16 @@ export function enrichSchema(view: View | ViewV2, tableSchema: TableSchema) {
const anyViewOrder = Object.values(view.schema || {}).some(
ui => ui.order != null
)
if (Object.keys(view.schema || {}).length > 0) {
for (const key of Object.keys(schema)) {
// if nothing specified in view, then it is not visible
const ui = view.schema?.[key] || { visible: false }
if (ui.visible === false) {
schema[key].visible = false
} else {
schema[key] = {
...schema[key],
...ui,
order: anyViewOrder ? ui?.order ?? undefined : schema[key].order,
}
for (const key of Object.keys(schema)) {
// if nothing specified in view, then it is not visible
const ui = view.schema?.[key] || { visible: false }
if (ui.visible === false) {
schema[key].visible = false
} else {
schema[key] = {
...schema[key],
...ui,
order: anyViewOrder ? ui?.order ?? undefined : schema[key].order,
}
}
}

View file

@ -49,7 +49,7 @@ describe("table sdk", () => {
}
describe("enrichViewSchemas", () => {
it("should fetch the default schema if not overriden", async () => {
it("should fetch the default schema if not overridden", async () => {
const tableId = basicTable._id!
const view: ViewV2 = {
version: 2,
@ -66,7 +66,7 @@ describe("table sdk", () => {
name: {
type: "string",
name: "name",
visible: true,
visible: false,
order: 2,
width: 80,
constraints: {
@ -76,7 +76,7 @@ describe("table sdk", () => {
description: {
type: "string",
name: "description",
visible: true,
visible: false,
width: 200,
constraints: {
type: "string",
@ -85,7 +85,7 @@ describe("table sdk", () => {
id: {
type: "number",
name: "id",
visible: true,
visible: false,
order: 1,
constraints: {
type: "number",