Namespace
This commit is contained in:
parent
1efaff940c
commit
7dbf71d477
|
@ -1,195 +1 @@
|
||||||
import viewTemplate from "./viewBuilder"
|
export * as v1 from "./legacyViews"
|
||||||
import { apiFileReturn } from "../../../utilities/fileSystem"
|
|
||||||
import { csv, json, jsonWithSchema, Format, isFormat } from "./exporters"
|
|
||||||
import { deleteView, getView, getViews, saveView } from "./utils"
|
|
||||||
import { fetchView } from "../row"
|
|
||||||
import { context, events } from "@budibase/backend-core"
|
|
||||||
import { DocumentType } from "../../../db/utils"
|
|
||||||
import sdk from "../../../sdk"
|
|
||||||
import { FieldTypes } from "../../../constants"
|
|
||||||
import {
|
|
||||||
Ctx,
|
|
||||||
Row,
|
|
||||||
Table,
|
|
||||||
TableExportFormat,
|
|
||||||
TableSchema,
|
|
||||||
View,
|
|
||||||
} from "@budibase/types"
|
|
||||||
import { builderSocket } from "../../../websockets"
|
|
||||||
|
|
||||||
const { cloneDeep, isEqual } = require("lodash")
|
|
||||||
|
|
||||||
export async function fetch(ctx: Ctx) {
|
|
||||||
ctx.body = await getViews()
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function save(ctx: Ctx) {
|
|
||||||
const db = context.getAppDB()
|
|
||||||
const { originalName, ...viewToSave } = ctx.request.body
|
|
||||||
|
|
||||||
const existingTable = await sdk.tables.getTable(ctx.request.body.tableId)
|
|
||||||
existingTable.views ??= {}
|
|
||||||
const table = cloneDeep(existingTable)
|
|
||||||
|
|
||||||
const groupByField: any = Object.values(table.schema).find(
|
|
||||||
(field: any) => field.name == viewToSave.groupBy
|
|
||||||
)
|
|
||||||
|
|
||||||
const view = viewTemplate(viewToSave, groupByField?.type === FieldTypes.ARRAY)
|
|
||||||
const viewName = viewToSave.name
|
|
||||||
|
|
||||||
if (!viewName) {
|
|
||||||
ctx.throw(400, "Cannot create view without a name")
|
|
||||||
}
|
|
||||||
|
|
||||||
await saveView(originalName, viewName, view)
|
|
||||||
|
|
||||||
// add views to table document
|
|
||||||
if (!table.views) table.views = {}
|
|
||||||
if (!view.meta.schema) {
|
|
||||||
view.meta.schema = table.schema
|
|
||||||
}
|
|
||||||
table.views[viewName] = { ...view.meta, name: viewName }
|
|
||||||
if (originalName) {
|
|
||||||
delete table.views[originalName]
|
|
||||||
existingTable.views[viewName] = existingTable.views[originalName]
|
|
||||||
}
|
|
||||||
await db.put(table)
|
|
||||||
await handleViewEvents(existingTable.views[viewName], table.views[viewName])
|
|
||||||
|
|
||||||
ctx.body = table.views[viewName]
|
|
||||||
builderSocket?.emitTableUpdate(ctx, table)
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function calculationEvents(existingView: View, newView: View) {
|
|
||||||
const existingCalculation = existingView && existingView.calculation
|
|
||||||
const newCalculation = newView && newView.calculation
|
|
||||||
|
|
||||||
if (existingCalculation && !newCalculation) {
|
|
||||||
await events.view.calculationDeleted(existingView)
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!existingCalculation && newCalculation) {
|
|
||||||
await events.view.calculationCreated(newView)
|
|
||||||
}
|
|
||||||
|
|
||||||
if (
|
|
||||||
existingCalculation &&
|
|
||||||
newCalculation &&
|
|
||||||
existingCalculation !== newCalculation
|
|
||||||
) {
|
|
||||||
await events.view.calculationUpdated(newView)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function filterEvents(existingView: View, newView: View) {
|
|
||||||
const hasExistingFilters = !!(
|
|
||||||
existingView &&
|
|
||||||
existingView.filters &&
|
|
||||||
existingView.filters.length
|
|
||||||
)
|
|
||||||
const hasNewFilters = !!(newView && newView.filters && newView.filters.length)
|
|
||||||
|
|
||||||
if (hasExistingFilters && !hasNewFilters) {
|
|
||||||
await events.view.filterDeleted(newView)
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!hasExistingFilters && hasNewFilters) {
|
|
||||||
await events.view.filterCreated(newView)
|
|
||||||
}
|
|
||||||
|
|
||||||
if (
|
|
||||||
hasExistingFilters &&
|
|
||||||
hasNewFilters &&
|
|
||||||
!isEqual(existingView.filters, newView.filters)
|
|
||||||
) {
|
|
||||||
await events.view.filterUpdated(newView)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async function handleViewEvents(existingView: View, newView: View) {
|
|
||||||
if (!existingView) {
|
|
||||||
await events.view.created(newView)
|
|
||||||
} else {
|
|
||||||
await events.view.updated(newView)
|
|
||||||
}
|
|
||||||
await calculationEvents(existingView, newView)
|
|
||||||
await filterEvents(existingView, newView)
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function destroy(ctx: Ctx) {
|
|
||||||
const db = context.getAppDB()
|
|
||||||
const viewName = decodeURIComponent(ctx.params.viewName)
|
|
||||||
const view = await deleteView(viewName)
|
|
||||||
const table = await sdk.tables.getTable(view.meta.tableId)
|
|
||||||
delete table.views![viewName]
|
|
||||||
await db.put(table)
|
|
||||||
await events.view.deleted(view)
|
|
||||||
|
|
||||||
ctx.body = view
|
|
||||||
builderSocket?.emitTableUpdate(ctx, table)
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function exportView(ctx: Ctx) {
|
|
||||||
const viewName = decodeURIComponent(ctx.query.view as string)
|
|
||||||
const view = await getView(viewName)
|
|
||||||
|
|
||||||
const format = ctx.query.format as unknown
|
|
||||||
|
|
||||||
if (!isFormat(format)) {
|
|
||||||
ctx.throw(
|
|
||||||
400,
|
|
||||||
"Format must be specified, either csv, json or jsonWithSchema"
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
if (view) {
|
|
||||||
ctx.params.viewName = viewName
|
|
||||||
// Fetch view rows
|
|
||||||
ctx.query = {
|
|
||||||
group: view.meta.groupBy,
|
|
||||||
calculation: view.meta.calculation,
|
|
||||||
// @ts-ignore
|
|
||||||
stats: !!view.meta.field,
|
|
||||||
field: view.meta.field,
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
// table all_ view
|
|
||||||
/* istanbul ignore next */
|
|
||||||
ctx.params.viewName = viewName
|
|
||||||
}
|
|
||||||
|
|
||||||
await fetchView(ctx)
|
|
||||||
let rows = ctx.body as Row[]
|
|
||||||
|
|
||||||
let schema: TableSchema = view && view.meta && view.meta.schema
|
|
||||||
const tableId =
|
|
||||||
ctx.params.tableId ||
|
|
||||||
view?.meta?.tableId ||
|
|
||||||
(viewName.startsWith(DocumentType.TABLE) && viewName)
|
|
||||||
const table: Table = await sdk.tables.getTable(tableId)
|
|
||||||
if (!schema) {
|
|
||||||
schema = table.schema
|
|
||||||
}
|
|
||||||
|
|
||||||
let exportRows = sdk.rows.utils.cleanExportRows(rows, schema, format, [])
|
|
||||||
|
|
||||||
if (format === Format.CSV) {
|
|
||||||
ctx.attachment(`${viewName}.csv`)
|
|
||||||
ctx.body = apiFileReturn(csv(Object.keys(schema), exportRows))
|
|
||||||
} else if (format === Format.JSON) {
|
|
||||||
ctx.attachment(`${viewName}.json`)
|
|
||||||
ctx.body = apiFileReturn(json(exportRows))
|
|
||||||
} else if (format === Format.JSON_WITH_SCHEMA) {
|
|
||||||
ctx.attachment(`${viewName}.json`)
|
|
||||||
ctx.body = apiFileReturn(jsonWithSchema(schema, exportRows))
|
|
||||||
} else {
|
|
||||||
throw "Format not recognised"
|
|
||||||
}
|
|
||||||
|
|
||||||
if (viewName.startsWith(DocumentType.TABLE)) {
|
|
||||||
await events.table.exported(table, format as TableExportFormat)
|
|
||||||
} else {
|
|
||||||
await events.view.exported(table, format as TableExportFormat)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -0,0 +1,195 @@
|
||||||
|
import viewTemplate from "./viewBuilder"
|
||||||
|
import { apiFileReturn } from "../../../utilities/fileSystem"
|
||||||
|
import { csv, json, jsonWithSchema, Format, isFormat } from "./exporters"
|
||||||
|
import { deleteView, getView, getViews, saveView } from "./utils"
|
||||||
|
import { fetchView } from "../row"
|
||||||
|
import { context, events } from "@budibase/backend-core"
|
||||||
|
import { DocumentType } from "../../../db/utils"
|
||||||
|
import sdk from "../../../sdk"
|
||||||
|
import { FieldTypes } from "../../../constants"
|
||||||
|
import {
|
||||||
|
Ctx,
|
||||||
|
Row,
|
||||||
|
Table,
|
||||||
|
TableExportFormat,
|
||||||
|
TableSchema,
|
||||||
|
View,
|
||||||
|
} from "@budibase/types"
|
||||||
|
import { builderSocket } from "../../../websockets"
|
||||||
|
|
||||||
|
const { cloneDeep, isEqual } = require("lodash")
|
||||||
|
|
||||||
|
export async function fetch(ctx: Ctx) {
|
||||||
|
ctx.body = await getViews()
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function save(ctx: Ctx) {
|
||||||
|
const db = context.getAppDB()
|
||||||
|
const { originalName, ...viewToSave } = ctx.request.body
|
||||||
|
|
||||||
|
const existingTable = await sdk.tables.getTable(ctx.request.body.tableId)
|
||||||
|
existingTable.views ??= {}
|
||||||
|
const table = cloneDeep(existingTable)
|
||||||
|
|
||||||
|
const groupByField: any = Object.values(table.schema).find(
|
||||||
|
(field: any) => field.name == viewToSave.groupBy
|
||||||
|
)
|
||||||
|
|
||||||
|
const view = viewTemplate(viewToSave, groupByField?.type === FieldTypes.ARRAY)
|
||||||
|
const viewName = viewToSave.name
|
||||||
|
|
||||||
|
if (!viewName) {
|
||||||
|
ctx.throw(400, "Cannot create view without a name")
|
||||||
|
}
|
||||||
|
|
||||||
|
await saveView(originalName, viewName, view)
|
||||||
|
|
||||||
|
// add views to table document
|
||||||
|
if (!table.views) table.views = {}
|
||||||
|
if (!view.meta.schema) {
|
||||||
|
view.meta.schema = table.schema
|
||||||
|
}
|
||||||
|
table.views[viewName] = { ...view.meta, name: viewName }
|
||||||
|
if (originalName) {
|
||||||
|
delete table.views[originalName]
|
||||||
|
existingTable.views[viewName] = existingTable.views[originalName]
|
||||||
|
}
|
||||||
|
await db.put(table)
|
||||||
|
await handleViewEvents(existingTable.views[viewName], table.views[viewName])
|
||||||
|
|
||||||
|
ctx.body = table.views[viewName]
|
||||||
|
builderSocket?.emitTableUpdate(ctx, table)
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function calculationEvents(existingView: View, newView: View) {
|
||||||
|
const existingCalculation = existingView && existingView.calculation
|
||||||
|
const newCalculation = newView && newView.calculation
|
||||||
|
|
||||||
|
if (existingCalculation && !newCalculation) {
|
||||||
|
await events.view.calculationDeleted(existingView)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!existingCalculation && newCalculation) {
|
||||||
|
await events.view.calculationCreated(newView)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (
|
||||||
|
existingCalculation &&
|
||||||
|
newCalculation &&
|
||||||
|
existingCalculation !== newCalculation
|
||||||
|
) {
|
||||||
|
await events.view.calculationUpdated(newView)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function filterEvents(existingView: View, newView: View) {
|
||||||
|
const hasExistingFilters = !!(
|
||||||
|
existingView &&
|
||||||
|
existingView.filters &&
|
||||||
|
existingView.filters.length
|
||||||
|
)
|
||||||
|
const hasNewFilters = !!(newView && newView.filters && newView.filters.length)
|
||||||
|
|
||||||
|
if (hasExistingFilters && !hasNewFilters) {
|
||||||
|
await events.view.filterDeleted(newView)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!hasExistingFilters && hasNewFilters) {
|
||||||
|
await events.view.filterCreated(newView)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (
|
||||||
|
hasExistingFilters &&
|
||||||
|
hasNewFilters &&
|
||||||
|
!isEqual(existingView.filters, newView.filters)
|
||||||
|
) {
|
||||||
|
await events.view.filterUpdated(newView)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function handleViewEvents(existingView: View, newView: View) {
|
||||||
|
if (!existingView) {
|
||||||
|
await events.view.created(newView)
|
||||||
|
} else {
|
||||||
|
await events.view.updated(newView)
|
||||||
|
}
|
||||||
|
await calculationEvents(existingView, newView)
|
||||||
|
await filterEvents(existingView, newView)
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function destroy(ctx: Ctx) {
|
||||||
|
const db = context.getAppDB()
|
||||||
|
const viewName = decodeURIComponent(ctx.params.viewName)
|
||||||
|
const view = await deleteView(viewName)
|
||||||
|
const table = await sdk.tables.getTable(view.meta.tableId)
|
||||||
|
delete table.views![viewName]
|
||||||
|
await db.put(table)
|
||||||
|
await events.view.deleted(view)
|
||||||
|
|
||||||
|
ctx.body = view
|
||||||
|
builderSocket?.emitTableUpdate(ctx, table)
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function exportView(ctx: Ctx) {
|
||||||
|
const viewName = decodeURIComponent(ctx.query.view as string)
|
||||||
|
const view = await getView(viewName)
|
||||||
|
|
||||||
|
const format = ctx.query.format as unknown
|
||||||
|
|
||||||
|
if (!isFormat(format)) {
|
||||||
|
ctx.throw(
|
||||||
|
400,
|
||||||
|
"Format must be specified, either csv, json or jsonWithSchema"
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (view) {
|
||||||
|
ctx.params.viewName = viewName
|
||||||
|
// Fetch view rows
|
||||||
|
ctx.query = {
|
||||||
|
group: view.meta.groupBy,
|
||||||
|
calculation: view.meta.calculation,
|
||||||
|
// @ts-ignore
|
||||||
|
stats: !!view.meta.field,
|
||||||
|
field: view.meta.field,
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// table all_ view
|
||||||
|
/* istanbul ignore next */
|
||||||
|
ctx.params.viewName = viewName
|
||||||
|
}
|
||||||
|
|
||||||
|
await fetchView(ctx)
|
||||||
|
let rows = ctx.body as Row[]
|
||||||
|
|
||||||
|
let schema: TableSchema = view && view.meta && view.meta.schema
|
||||||
|
const tableId =
|
||||||
|
ctx.params.tableId ||
|
||||||
|
view?.meta?.tableId ||
|
||||||
|
(viewName.startsWith(DocumentType.TABLE) && viewName)
|
||||||
|
const table: Table = await sdk.tables.getTable(tableId)
|
||||||
|
if (!schema) {
|
||||||
|
schema = table.schema
|
||||||
|
}
|
||||||
|
|
||||||
|
let exportRows = sdk.rows.utils.cleanExportRows(rows, schema, format, [])
|
||||||
|
|
||||||
|
if (format === Format.CSV) {
|
||||||
|
ctx.attachment(`${viewName}.csv`)
|
||||||
|
ctx.body = apiFileReturn(csv(Object.keys(schema), exportRows))
|
||||||
|
} else if (format === Format.JSON) {
|
||||||
|
ctx.attachment(`${viewName}.json`)
|
||||||
|
ctx.body = apiFileReturn(json(exportRows))
|
||||||
|
} else if (format === Format.JSON_WITH_SCHEMA) {
|
||||||
|
ctx.attachment(`${viewName}.json`)
|
||||||
|
ctx.body = apiFileReturn(jsonWithSchema(schema, exportRows))
|
||||||
|
} else {
|
||||||
|
throw "Format not recognised"
|
||||||
|
}
|
||||||
|
|
||||||
|
if (viewName.startsWith(DocumentType.TABLE)) {
|
||||||
|
await events.table.exported(table, format as TableExportFormat)
|
||||||
|
} else {
|
||||||
|
await events.view.exported(table, format as TableExportFormat)
|
||||||
|
}
|
||||||
|
}
|
|
@ -11,7 +11,7 @@ router
|
||||||
.get(
|
.get(
|
||||||
"/api/views/export",
|
"/api/views/export",
|
||||||
authorized(permissions.BUILDER),
|
authorized(permissions.BUILDER),
|
||||||
viewController.exportView
|
viewController.v1.exportView
|
||||||
)
|
)
|
||||||
.get(
|
.get(
|
||||||
"/api/views/:viewName",
|
"/api/views/:viewName",
|
||||||
|
@ -22,13 +22,13 @@ router
|
||||||
),
|
),
|
||||||
rowController.fetchView
|
rowController.fetchView
|
||||||
)
|
)
|
||||||
.get("/api/views", authorized(permissions.BUILDER), viewController.fetch)
|
.get("/api/views", authorized(permissions.BUILDER), viewController.v1.fetch)
|
||||||
.delete(
|
.delete(
|
||||||
"/api/views/:viewName",
|
"/api/views/:viewName",
|
||||||
paramResource("viewName"),
|
paramResource("viewName"),
|
||||||
authorized(permissions.BUILDER),
|
authorized(permissions.BUILDER),
|
||||||
viewController.destroy
|
viewController.v1.destroy
|
||||||
)
|
)
|
||||||
.post("/api/views", authorized(permissions.BUILDER), viewController.save)
|
.post("/api/views", authorized(permissions.BUILDER), viewController.v1.save)
|
||||||
|
|
||||||
export default router
|
export default router
|
||||||
|
|
Loading…
Reference in New Issue