deno.land / x / pasta@0.0.6 / src / static-modules-generator.ts

static-modules-generator.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
function header() { return `// Automatically generated by PASTA`;}
function generatePgCatalog() { return `${header()}type UUIDFunctionCall = { returnType: "uuid" };type TimestampFunctionCall = { returnType: "timestamp" };type JSONValue = | string | number | boolean | { [x: string]: JSONValue } | Array<JSONValue>;
function uuid() { return { "type": "call", "function": { "name": "gen_random_uuid" }, "args": [], "returnType": "uuid", } as UUIDFunctionCall;}
function now() { return ( { "type": "call", "function": { "name": "now" }, "args": [], "returnType": "timestamp", } as TimestampFunctionCall );}
const functions = { now, uuid,};export type { JSONValue, TimestampFunctionCall };export { functions, now, uuid };`;}
function generateSchema() { return `${header()}import type { TableName, Tables } from "./custom-schema.ts";import { associations } from "./custom-schema.ts";
type KeysOf<T extends TableName> = Tables[T]["keys"];type ColumnsOf<T extends TableName> = Tables[T]["columns"];type ColumnNamesOf<T extends TableName> = (keyof ColumnsOf<T>)[];type AssociationsOf<T extends TableName> = Tables[T]["associations"];
type MxNAssociation = { kind: "MxN"; table: TableName; associativeTable: TableName; fks: Record<string, [string, string]>;};
type NAssociation = { kind: "1xN"; table: TableName; fks: Record<string, string>;};
type Association = | NAssociation | MxNAssociation;
type Associations = Record<TableName, Record<string, Association>>;
export type { Association, Associations, AssociationsOf, ColumnNamesOf, ColumnsOf, KeysOf, MxNAssociation, NAssociation, TableName, Tables,};export { associations };
`;}
function generateTypedStatementBuilder(pastaLib: string) { return `${header()}import { associations, AssociationsOf, ColumnNamesOf, ColumnsOf, KeysOf, MxNAssociation, NAssociation, TableName,} from "./schema.ts";
import { sql } from "${pastaLib}";
type ReturningBuilder<T extends TableName> = sql.SqlBuilder & { returning: (options: ColumnNamesOf<T>) => ReturningBuilder<T>;};type InsertBuilder<T extends TableName> = ReturningBuilder<T> & { associate: (associationMap: AssociationsOf<T>) => InsertBuilder<T>;};type SelectBuilder<T extends TableName> = ReturningBuilder<T> & { where: (whereMap: ColumnsOf<T>) => SelectBuilder<T>; unique: (whereMap: KeysOf<T>) => SelectBuilder<T>;};
function addReturning<T extends TableName>(builder: sql.SqlBuilder): ReturningBuilder<T> { return { ...builder, returning: function ( options: ColumnNamesOf<T>, ): ReturningBuilder<T> { return addReturning(sql.returning(builder, options.map(String))); }, };}
function addSelectReturning<T extends TableName>(builder: sql.SqlBuilder) { return { ...builder, returning: function (options: ColumnNamesOf<T>): ReturningBuilder<T> { return addSelectReturning(sql.selection(builder, options.map(String))); }, };}
function addWhere<T extends TableName>(builder: ReturningBuilder<T>) { return { ...builder, where: function (whereMap: ColumnsOf<T>): ReturningBuilder<T> { return addSelectReturning(sql.where(builder, whereMap)); }, } as SelectBuilder<T>;}
function addUnique<T extends TableName>(builder: ReturningBuilder<T>) { return { ...builder, unique: function (whereMap: KeysOf<T>): ReturningBuilder<T> { return addSelectReturning(sql.where(builder, whereMap)); }, } as SelectBuilder<T>;}
function addAssociate<T extends TableName>( table: T, builder: ReturningBuilder<T>,): InsertBuilder<T> { const builderWithMxNAssociation = <T extends TableName>( builder: ReturningBuilder<T>, association: MxNAssociation, associatedValues: Record<string, unknown>, ) => { const { fks, associativeTable } = association; const targetAssociationColumns = Object.keys(fks); const sourceColumns = targetAssociationColumns.map(( c, ) => (sql.column(...fks[c]))); const returningFksAssociation = Object.values(fks).filter(( [fkTable], ) => (fkTable == association.table)) .map(([_, fkColumn]) => (fkColumn));
const withStatement = sql.makeInsertWith( association.table, sql.returning( sql.makeInsert(association.table, associatedValues), returningFksAssociation, ), sql.makeInsertWith( table, builder, sql.makeInsertFrom(associativeTable, sourceColumns, targetAssociationColumns), ), ); return addReturning<T>(withStatement); };
const builderWith1xNAssociation = ( builder: ReturningBuilder<T>, association: NAssociation, associatedValues: Record<string, unknown>, ) => { const { fks, table: associedTable } = association;
const returningFksAssociation = Object.values(fks);
const sourceFkColumns = Object.keys(fks).map(( k, ) => (sql.column(table, fks[k])));
const sourceValueColumns = Object.keys(associatedValues).map(( k, ) => (sql.column(String(associatedValues[k]))));
const withStatement = sql.makeInsertWith( table, sql.returning(builder, returningFksAssociation), sql.makeInsertFrom( associedTable, [...sourceFkColumns, ...sourceValueColumns], [...Object.keys(fks), ...Object.keys(associatedValues)], ), ); return addReturning<T>(withStatement); };
const associate = (associationMap: AssociationsOf<T>) => { const newBuilder = Object.entries(associationMap).reduce( (previous, [associated, associatedValues]) => { const association = associations[table][associated]; const pks = association.kind === "1xN" ? Object.values(association.fks) : Object.values(association.fks).filter(( [associatedTable, _column], ) => associatedTable === table).map(([_table, column]) => column);
const returningPks = previous.returning(pks as ColumnNamesOf<T>);
return association.kind === "1xN" ? builderWith1xNAssociation(returningPks, association, associatedValues) : builderWithMxNAssociation(returningPks, association, associatedValues); }, builder, );
return addAssociate(table, newBuilder); }; return { ...builder, associate };}
// Public functions
function insert<T extends TableName>(table: T): (valueMap: ColumnsOf<T>) => InsertBuilder<T> { return function (valueMap) { return addAssociate<T>( table, addReturning<T>(sql.makeInsert(table, valueMap)), ); };}
function upsert<T extends TableName>( table: T,): (insertValues: ColumnsOf<T>, updateValues?: ColumnsOf<T>) => ReturningBuilder<T> { return (insertValues, updateValues) => addReturning(sql.makeUpsert(table, insertValues, updateValues));}
function update<T extends TableName>( table: T,): (keyValues: KeysOf<T>, setValues: ColumnsOf<T>) => ReturningBuilder<T> { return (keyValues, setValues) => addReturning(sql.makeUpdate(table, keyValues, setValues));}
function insertWith<T1 extends TableName>(contextTable: T1, context: ReturningBuilder<T1>) { return function <T2 extends TableName>(insert: ReturningBuilder<T2>) { return addReturning<T2>( sql.makeInsertWith(contextTable, context, insert), ); };}
function select<T extends TableName>(table: T): () => SelectBuilder<T> { return () => addUnique<T>(addWhere<T>(addSelectReturning<T>(sql.makeSelect(table))));}
export { insert, insertWith, select, update, upsert };export type { InsertBuilder, ReturningBuilder, SelectBuilder };`;}
function generateIndex(pastaLib: string) { return `${header()}export { db } from "${pastaLib}";export { tables } from "./builders.ts";export { functions } from "./pg-catalog.ts";`;}
export { generateIndex, generatePgCatalog, generateSchema, generateTypedStatementBuilder,};
pasta

Version Info

Tagged at
a year ago