1
1
module ColumnType = {
2
- type t = Integer | String | Varchar
2
+ type t = Bool | Integer | Float | String | Varchar | Date | Datetime
3
3
4
4
let toSQLType = dt =>
5
5
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"
9
13
}
10
14
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"
16
26
}
27
+
28
+ nullable ? ` option<${dt}>` : dt
29
+ }
17
30
}
18
31
19
32
module Column = {
@@ -39,10 +52,7 @@ module Column = {
39
52
let optDefaultToString = optDefault => Belt .Option .getWithDefault (optDefault , "None" )
40
53
41
54
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)}>,`
46
56
47
57
let toColumnObj = (column , tableName ) => {
48
58
open StringBuilder
@@ -63,13 +73,16 @@ module Column = {
63
73
64
74
let toProjectionString = column => ` ${column.name}: c.${column.name}->DQL.column->DQL.u`
65
75
66
- let toDefaultReturnType = column => ` ${column.name}: ${ColumnType.toRescriptType(column.dt)}`
76
+ let toDefaultReturnType = column => {
77
+ ` ${column.name}: ${ColumnType.toRescriptType(column.dt, column.nullable)}`
78
+ }
67
79
68
- let toOptionalField = column => ` ${column.name}?: ${ColumnType.toRescriptType(column.dt)}`
80
+ let toOptionalField = column =>
81
+ ` ${column.name}?: ${ColumnType.toRescriptType(column.dt, column.nullable)}`
69
82
}
70
83
71
84
module Columns = {
72
- let toColumnStrings = columns => columns -> Js .Array2 .map (Column .toColumnString )
85
+ let toColumnStrings = columns => columns -> Js .Array2 .map (column => Column .toColumnString ( column ) )
73
86
74
87
let toColumnObjs = (columns , tableName ) =>
75
88
columns -> Js .Array2 .map (Column .toColumnObj (_ , tableName ))
@@ -109,19 +122,20 @@ module Source = {
109
122
let toSelectable = source =>
110
123
source .table .columns -> Js .Array2 .map (column => {
111
124
let columnName = ` ${source.alias}_${column.name}`
112
- let dt = ColumnType .toRescriptType (column .dt )
125
+ let dt = ColumnType .toRescriptType (column .dt , column . nullable )
113
126
114
127
` ${columnName}: DDL.Column.t<${dt}>,`
115
128
})
116
129
117
130
let toProjectable = source => {
131
+ let optional = switch source .sourceType {
132
+ | LeftJoin => true
133
+ | _ => false
134
+ }
135
+
118
136
source .table .columns -> Js .Array2 .map (column => {
119
137
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 )
125
139
126
140
` ${columnName}: DDL.Column.t<${dt}>,`
127
141
})
@@ -132,8 +146,8 @@ module Source = {
132
146
let columnName = ` ${source.alias}_${column.name}`
133
147
134
148
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 ))
137
151
}
138
152
139
153
` ${columnName}: ${dt},`
@@ -163,7 +177,8 @@ module Source = {
163
177
module Sources = {
164
178
let toSelectables = sources => sources -> Js .Array2 .map (Source .toSelectable )-> Belt .Array .concatMany
165
179
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
167
182
168
183
let toDefaultProjections = sources =>
169
184
sources -> Js .Array2 .map (Source .toDefaultProjections )-> Belt .Array .concatMany
0 commit comments