PR comments

This commit is contained in:
Martin McKeaveney 2024-12-09 11:59:04 +00:00
parent bca9bd27db
commit b6fcdf301d
2 changed files with 14 additions and 21 deletions

View File

@ -29,7 +29,7 @@ async function updated(oldTable: Table, newTable: Table) {
for (const key in newTable.schema) {
if (!oldTable.schema[key]) {
const newColumn = newTable.schema[key]
if ("default" in newColumn) {
if ("default" in newColumn && newColumn.default != null) {
defaultValues = true
}
if (newColumn.type === FieldType.AI) {

View File

@ -187,21 +187,15 @@ async function handleViewEvents(existingView: ViewV2, view: ViewV2) {
// if new columns in the view
for (const key in view.schema) {
if (!existingView?.schema?.[key]) {
// view calculations
// @ts-expect-error non calculation types just won't have the calculationType field
const calculationType = view.schema[key].calculationType
if (calculationType) {
if ("calculationType" in view.schema[key] && !existingView?.schema?.[key]) {
await events.view.calculationCreated({
calculationType,
calculationType: view.schema[key].calculationType,
tableId: view.tableId,
})
}
}
// view joins
if (view.schema[key].columns) {
for (const column in view.schema[key]?.columns) {
for (const column in view.schema[key]?.columns ?? []) {
// if the new column is visible and it wasn't before
if (
!existingView?.schema?.[key].columns?.[column].visible &&
@ -212,7 +206,6 @@ async function handleViewEvents(existingView: ViewV2, view: ViewV2) {
}
}
}
}
}
export async function update(ctx: Ctx<UpdateViewRequest, UpdateViewResponse>) {