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) { for (const key in newTable.schema) {
if (!oldTable.schema[key]) { if (!oldTable.schema[key]) {
const newColumn = newTable.schema[key] const newColumn = newTable.schema[key]
if ("default" in newColumn) { if ("default" in newColumn && newColumn.default != null) {
defaultValues = true defaultValues = true
} }
if (newColumn.type === FieldType.AI) { if (newColumn.type === FieldType.AI) {

View File

@ -187,29 +187,22 @@ async function handleViewEvents(existingView: ViewV2, view: ViewV2) {
// if new columns in the view // if new columns in the view
for (const key in view.schema) { for (const key in view.schema) {
if (!existingView?.schema?.[key]) { if ("calculationType" in view.schema[key] && !existingView?.schema?.[key]) {
// view calculations await events.view.calculationCreated({
// @ts-expect-error non calculation types just won't have the calculationType field calculationType: view.schema[key].calculationType,
const calculationType = view.schema[key].calculationType tableId: view.tableId,
if (calculationType) { })
await events.view.calculationCreated({
calculationType,
tableId: view.tableId,
})
}
} }
// view joins // 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 the new column is visible and it wasn't before if (
if ( !existingView?.schema?.[key].columns?.[column].visible &&
!existingView?.schema?.[key].columns?.[column].visible && view.schema?.[key].columns?.[column].visible
view.schema?.[key].columns?.[column].visible ) {
) { // new view join exposing a column
// new view join exposing a column await events.view.viewJoinCreated({ tableId: view.tableId })
await events.view.viewJoinCreated({ tableId: view.tableId })
}
} }
} }
} }