-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
cli.ts
272 lines (233 loc) · 7.52 KB
/
cli.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
/* eslint-disable no-console */
import { spawnSync } from "node:child_process";
import {
DRIZZLE_LAB_ENV_KEY,
getEnv,
importDrizzleConfig,
} from "@drizzle-lab/api/config/node";
import { command, string, run, boolean, number } from "@drizzle-team/brocli";
import chalk from "chalk";
import pkg from "./package.json";
const optionConfig = string().desc("Path to drizzle config file").alias("c");
const debug = boolean().desc("Enable log output").default(false);
const tsConfig = string()
.desc(
"Path to tsconfig.json. It is used to resolve TypeScript paths aliases.",
)
.default(getEnv().DRIZZLE_LAB_TS_CONFIG_PATH);
const envPath = string()
.desc("Path to a .env file. It is used to load environment variables.")
.alias("e");
const visualizer = command({
name: "visualizer",
options: {
config: optionConfig,
debug,
"save-dir": string()
.desc("Directory to save the visualizer data")
.default(".drizzle"),
"project-id": string()
.desc(
"A unique identifier for the current visualized project. It is used as filename to save the visualizer state.",
)
.default("visualizer"),
"ts-config": tsConfig,
port: number().desc("Port to run visualizer on").default(64738).alias("p"),
"env-path": envPath,
},
async transform(options) {
const DRIZZLE_LAB_CWD = process.cwd();
const cliEnvs = {
PORT: options.port ? String(options.port) : undefined,
[DRIZZLE_LAB_ENV_KEY.DEBUG]: String(options.debug),
[DRIZZLE_LAB_ENV_KEY.CONFIG_PATH]: options.config,
[DRIZZLE_LAB_ENV_KEY.SAVE_DIR]: options["save-dir"],
[DRIZZLE_LAB_ENV_KEY.PROJECT_ID]: options["project-id"],
[DRIZZLE_LAB_ENV_KEY.CWD]: DRIZZLE_LAB_CWD,
[DRIZZLE_LAB_ENV_KEY.TS_CONFIG_PATH]: options["ts-config"],
[DRIZZLE_LAB_ENV_KEY.ENV_FILE_PATH]: options["env-path"],
} as const;
process.env = {
...process.env,
...cliEnvs,
};
const config = await importDrizzleConfig(options.config);
if (options.debug) {
console.log("version", pkg.version);
console.log("platform", process.platform);
console.log("options", options);
console.log("cli env", cliEnvs);
if (
config.lab?.projectId &&
options["project-id"] &&
options["project-id"] !== config.lab?.projectId
) {
console.log(
chalk.yellow(
`\n"projectId" defined in config.lab (${config.lab?.projectId}) will be overridden by "--project-id" flag (${options["project-id"]})\n`,
),
);
}
console.log("config", config);
}
return options;
},
async handler() {
disclaimer();
await assertOrmCoreVersion();
process.env.NODE_ENV === "development"
? spawnSync("vite", ["--host"], {
stdio: "inherit",
})
: spawnSync(process.execPath, ["visualizer/server/index.mjs"], {
stdio: "inherit",
cwd: import.meta.dirname,
env: {
...process.env,
NODE_ENV: "production",
},
});
},
});
const snapshot = command({
name: "snapshot",
desc: "Generate the snapshot for the current schema",
options: {
config: optionConfig,
debug,
"ts-config": tsConfig,
"env-path": envPath,
},
transform: async (options) => {
process.env[DRIZZLE_LAB_ENV_KEY.DEBUG] = String(options.debug);
process.env[DRIZZLE_LAB_ENV_KEY.TS_CONFIG_PATH] = options["ts-config"];
process.env[DRIZZLE_LAB_ENV_KEY.ENV_FILE_PATH] = options["env-path"];
const config = await importDrizzleConfig(options.config);
if (options.debug) {
console.log("options", options);
console.log("config", config);
}
return config;
},
async handler(config) {
disclaimer();
await assertOrmCoreVersion();
let snapshot = {};
switch (config.dialect) {
case "postgresql": {
const { importFromFiles, drizzleObjectsToSnapshot } = await import(
"@drizzle-lab/api/pg/node"
);
const drizzleObjects = await importFromFiles(config.schema);
snapshot = drizzleObjectsToSnapshot(drizzleObjects, config);
break;
}
case "sqlite": {
const { importFromFiles, drizzleObjectsToSnapshot } = await import(
"@drizzle-lab/api/sqlite/node"
);
const drizzleObjects = await importFromFiles(config.schema);
snapshot = drizzleObjectsToSnapshot(drizzleObjects, config);
break;
}
case "mysql": {
const { importFromFiles, drizzleObjectsToSnapshot } = await import(
"@drizzle-lab/api/mysql/node"
);
const drizzleObjects = await importFromFiles(config.schema);
snapshot = drizzleObjectsToSnapshot(drizzleObjects, config);
break;
}
}
console.log("\n");
console.log(JSON.stringify(snapshot, null, 2));
},
});
const sql = command({
name: "sql",
desc: "Generate the SQL for the current schema",
options: {
config: optionConfig,
debug,
"ts-config": tsConfig,
"env-path": envPath,
},
transform: async (options) => {
process.env[DRIZZLE_LAB_ENV_KEY.DEBUG] = String(options.debug);
process.env[DRIZZLE_LAB_ENV_KEY.TS_CONFIG_PATH] = options["ts-config"];
process.env[DRIZZLE_LAB_ENV_KEY.ENV_FILE_PATH] = options["env-path"];
const config = await importDrizzleConfig(options.config);
if (options.debug) {
console.log("options", options);
console.log("config", config);
}
return config;
},
async handler(config) {
disclaimer();
await assertOrmCoreVersion();
let sql = "";
switch (config.dialect) {
case "postgresql": {
const { importFromFiles, drizzleObjectsToSql } = await import(
"@drizzle-lab/api/pg/node"
);
const drizzleObjects = await importFromFiles(config.schema);
sql = drizzleObjectsToSql(drizzleObjects, config);
break;
}
case "sqlite": {
const { importFromFiles, drizzleObjectsToSql } = await import(
"@drizzle-lab/api/sqlite/node"
);
const drizzleObjects = await importFromFiles(config.schema);
sql = drizzleObjectsToSql(drizzleObjects, config);
break;
}
case "mysql": {
const { importFromFiles, drizzleObjectsToSql } = await import(
"@drizzle-lab/api/mysql/node"
);
const drizzleObjects = await importFromFiles(config.schema);
sql = drizzleObjectsToSql(drizzleObjects, config);
break;
}
}
console.log("\n");
console.log(sql);
},
});
const generate = command({
name: "generate",
options: {
config: optionConfig,
debug,
},
subcommands: [snapshot, sql],
});
run([visualizer, generate], {
name: "Drizzle Lab CLI",
version: pkg.version,
});
function disclaimer() {
console.log(
chalk.yellow(
`Drizzle Lab is a community-driven work in progress, and it is not guaranteed to work as expected.
If you want to help improve it, feel free to create an issue on GitHub: https://github.com/rphlmr/drizzle-lab/issues/new or reach out to me on Discord, X, or BlueSky at @rphlmr.`,
),
);
}
async function assertOrmCoreVersion() {
try {
const { npmVersion } = await import("drizzle-orm/version");
const [_major, minor, _patch] = npmVersion.split(".").map(Number);
if (minor < 35) {
console.log(
"This version of drizzle-lab requires newer version of drizzle-orm\nPlease update drizzle-orm package to the latest version 👍",
);
}
} catch (e) {
console.error("Please install latest version of drizzle-orm");
throw e;
}
}