Skip to content

Commit

Permalink
PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
shogunpurple committed Dec 9, 2024
1 parent bca9bd2 commit b6fcdf3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 21 deletions.
2 changes: 1 addition & 1 deletion packages/backend-core/src/events/publishers/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
33 changes: 13 additions & 20 deletions packages/server/src/api/controllers/view/viewsV2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -187,29 +187,22 @@ 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) {
await events.view.calculationCreated({
calculationType,
tableId: view.tableId,
})
}
if ("calculationType" in view.schema[key] && !existingView?.schema?.[key]) {
await events.view.calculationCreated({
calculationType: view.schema[key].calculationType,
tableId: view.tableId,
})
}

// view joins
if (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 &&
view.schema?.[key].columns?.[column].visible
) {
// new view join exposing a column
await events.view.viewJoinCreated({ tableId: view.tableId })
}
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 &&
view.schema?.[key].columns?.[column].visible
) {
// new view join exposing a column
await events.view.viewJoinCreated({ tableId: view.tableId })
}
}
}
Expand Down

0 comments on commit b6fcdf3

Please sign in to comment.