Skip to content

Commit d27366c

Browse files
committed
new types; set dt to option<...> if nullable is true
1 parent 63e9284 commit d27366c

File tree

1 file changed

+40
-25
lines changed

1 file changed

+40
-25
lines changed

src/CodeGen/CodeGen.res

+40-25
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,32 @@
11
module ColumnType = {
2-
type t = Integer | String | Varchar
2+
type t = Bool | Integer | Float | String | Varchar | Date | Datetime
33

44
let toSQLType = dt =>
55
switch dt {
6-
| Integer => `INTEGER`
7-
| String => `TEXT`
8-
| Varchar => `VARCHAR`
6+
| Bool => "BOOL"
7+
| Integer => "INTEGER"
8+
| Float => "FLOAT"
9+
| String => "TEXT"
10+
| Varchar => "VARCHAR"
11+
| Date => "DATE"
12+
| Datetime => "DATETIME"
913
}
1014

11-
let toRescriptType = dt =>
12-
switch dt {
13-
| Integer => `int`
14-
| String => `string`
15-
| Varchar => `string`
15+
let toRescriptType = (dt, optionalNullable) => {
16+
let nullable = optionalNullable->Belt.Option.getWithDefault(false)
17+
18+
let dt = switch dt {
19+
| Bool => "bool"
20+
| Integer => "int"
21+
| Float => "float"
22+
| String => "string"
23+
| Varchar => "string"
24+
| Date => "Js.Date.t"
25+
| Datetime => "Js.Date.t"
1626
}
27+
28+
nullable ? `option<${dt}>` : dt
29+
}
1730
}
1831

1932
module Column = {
@@ -39,10 +52,7 @@ module Column = {
3952
let optDefaultToString = optDefault => Belt.Option.getWithDefault(optDefault, "None")
4053

4154
let toColumnString = column =>
42-
` ${column.name}: DDL.Column.t<${column.dt->ColumnType.toRescriptType}>,`
43-
44-
let toOptColumnString = column =>
45-
` ${column.name}: DDL.Column.t<option<${column.dt->ColumnType.toRescriptType}>>,`
55+
` ${column.name}: DDL.Column.t<${ColumnType.toRescriptType(column.dt, column.nullable)}>,`
4656

4757
let toColumnObj = (column, tableName) => {
4858
open StringBuilder
@@ -63,13 +73,16 @@ module Column = {
6373

6474
let toProjectionString = column => `${column.name}: c.${column.name}->DQL.column->DQL.u`
6575

66-
let toDefaultReturnType = column => `${column.name}: ${ColumnType.toRescriptType(column.dt)}`
76+
let toDefaultReturnType = column => {
77+
`${column.name}: ${ColumnType.toRescriptType(column.dt, column.nullable)}`
78+
}
6779

68-
let toOptionalField = column => `${column.name}?: ${ColumnType.toRescriptType(column.dt)}`
80+
let toOptionalField = column =>
81+
`${column.name}?: ${ColumnType.toRescriptType(column.dt, column.nullable)}`
6982
}
7083

7184
module Columns = {
72-
let toColumnStrings = columns => columns->Js.Array2.map(Column.toColumnString)
85+
let toColumnStrings = columns => columns->Js.Array2.map(column => Column.toColumnString(column))
7386

7487
let toColumnObjs = (columns, tableName) =>
7588
columns->Js.Array2.map(Column.toColumnObj(_, tableName))
@@ -109,19 +122,20 @@ module Source = {
109122
let toSelectable = source =>
110123
source.table.columns->Js.Array2.map(column => {
111124
let columnName = `${source.alias}_${column.name}`
112-
let dt = ColumnType.toRescriptType(column.dt)
125+
let dt = ColumnType.toRescriptType(column.dt, column.nullable)
113126

114127
` ${columnName}: DDL.Column.t<${dt}>,`
115128
})
116129

117130
let toProjectable = source => {
131+
let optional = switch source.sourceType {
132+
| LeftJoin => true
133+
| _ => false
134+
}
135+
118136
source.table.columns->Js.Array2.map(column => {
119137
let columnName = `${source.alias}_${column.name}`
120-
121-
let dt = switch source.sourceType {
122-
| From | InnerJoin => ColumnType.toRescriptType(column.dt)
123-
| LeftJoin => `option<${ColumnType.toRescriptType(column.dt)}>`
124-
}
138+
let dt = ColumnType.toRescriptType(column.dt, optional ? Some(true) : column.nullable)
125139

126140
` ${columnName}: DDL.Column.t<${dt}>,`
127141
})
@@ -132,8 +146,8 @@ module Source = {
132146
let columnName = `${source.alias}_${column.name}`
133147

134148
let dt = switch source.sourceType {
135-
| From | InnerJoin => ColumnType.toRescriptType(column.dt)
136-
| LeftJoin => `option<${ColumnType.toRescriptType(column.dt)}>`
149+
| From | InnerJoin => ColumnType.toRescriptType(column.dt, column.nullable)
150+
| LeftJoin => ColumnType.toRescriptType(column.dt, Some(true))
137151
}
138152

139153
` ${columnName}: ${dt},`
@@ -163,7 +177,8 @@ module Source = {
163177
module Sources = {
164178
let toSelectables = sources => sources->Js.Array2.map(Source.toSelectable)->Belt.Array.concatMany
165179

166-
let toProjectables = sources => sources->Js.Array2.map(Source.toProjectable)->Belt.Array.concatMany
180+
let toProjectables = sources =>
181+
sources->Js.Array2.map(Source.toProjectable)->Belt.Array.concatMany
167182

168183
let toDefaultProjections = sources =>
169184
sources->Js.Array2.map(Source.toDefaultProjections)->Belt.Array.concatMany

0 commit comments

Comments
 (0)