Skip to content

Commit 086c65a

Browse files
committed
chore: keep pgType arg non-undefined
It should be the resposibility of the caller to make sure the argument is defined
1 parent 6296bdb commit 086c65a

File tree

1 file changed

+32
-18
lines changed

1 file changed

+32
-18
lines changed

src/server/templates/typescript.ts

+32-18
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,12 @@ export type Database = {
100100
...schemaFunctions
101101
.filter((fn) => fn.argument_types === table.name)
102102
.map((fn) => {
103-
const pgType = types.find(({ id }) => id === fn.return_type_id)
104-
const type = pgTypeToTsType(pgType?.name, types, schemas)
105-
return `${JSON.stringify(fn.name)}: ${type} | null`
103+
const type = types.find(({ id }) => id === fn.return_type_id)
104+
let tsType = 'unknown'
105+
if (type) {
106+
tsType = pgTypeToTsType(type.name, types, schemas)
107+
}
108+
return `${JSON.stringify(fn.name)}: ${tsType} | null`
106109
}),
107110
]}
108111
}
@@ -284,9 +287,12 @@ export type Database = {
284287
}
285288
286289
const argsNameAndType = inArgs.map(({ name, type_id, has_default }) => {
287-
const pgType = types.find(({ id }) => id === type_id)
288-
const type = pgTypeToTsType(pgType?.name, types, schemas)
289-
return { name, type, has_default }
290+
const type = types.find(({ id }) => id === type_id)
291+
let tsType = 'unknown'
292+
if (type) {
293+
tsType = pgTypeToTsType(type.name, types, schemas)
294+
}
295+
return { name, type: tsType, has_default }
290296
})
291297
292298
return `{
@@ -301,9 +307,12 @@ export type Database = {
301307
const tableArgs = args.filter(({ mode }) => mode === 'table')
302308
if (tableArgs.length > 0) {
303309
const argsNameAndType = tableArgs.map(({ name, type_id }) => {
304-
const pgType = types.find(({ id }) => id === type_id)
305-
const type = pgTypeToTsType(pgType?.name, types, schemas)
306-
return { name, type }
310+
const type = types.find(({ id }) => id === type_id)
311+
let tsType = 'unknown'
312+
if (type) {
313+
tsType = pgTypeToTsType(type.name, types, schemas)
314+
}
315+
return { name, type: tsType }
307316
})
308317
309318
return `{
@@ -330,9 +339,13 @@ export type Database = {
330339
}`
331340
}
332341
333-
// Case 3: returns base/composite/enum type.
342+
// Case 3: returns base/array/composite/enum type.
334343
const type = types.find(({ id }) => id === return_type_id)
335-
return pgTypeToTsType(type?.name, types, schemas)
344+
if (type) {
345+
return pgTypeToTsType(type.name, types, schemas)
346+
}
347+
348+
return 'unknown'
336349
})()})${is_set_returning_function ? '[]' : ''}
337350
}`
338351
)
@@ -362,9 +375,12 @@ export type Database = {
362375
({ name, attributes }) =>
363376
`${JSON.stringify(name)}: {
364377
${attributes.map(({ name, type_id }) => {
365-
const pgType = types.find(({ id }) => id === type_id)
366-
const type = pgTypeToTsType(pgType?.name, types, schemas)
367-
return `${JSON.stringify(name)}: ${type}`
378+
const type = types.find(({ id }) => id === type_id)
379+
let tsType = 'unknown'
380+
if (type) {
381+
tsType = pgTypeToTsType(type.name, types, schemas)
382+
}
383+
return `${JSON.stringify(name)}: ${tsType}`
368384
})}
369385
}`
370386
)
@@ -464,13 +480,11 @@ export type Enums<
464480

465481
// TODO: Make this more robust. Currently doesn't handle range types - returns them as unknown.
466482
const pgTypeToTsType = (
467-
pgType: string | undefined,
483+
pgType: string,
468484
types: PostgresType[],
469485
schemas: PostgresSchema[]
470486
): string => {
471-
if (pgType === undefined) {
472-
return 'unknown'
473-
} else if (pgType === 'bool') {
487+
if (pgType === 'bool') {
474488
return 'boolean'
475489
} else if (['int2', 'int4', 'int8', 'float4', 'float8', 'numeric'].includes(pgType)) {
476490
return 'number'

0 commit comments

Comments
 (0)