forked from alephjs/aleph.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.ts
234 lines (218 loc) · 7.06 KB
/
init.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
import { Untar } from "https://deno.land/[email protected]/archive/tar.ts";
import { parse } from "https://deno.land/[email protected]/flags/mod.ts";
import { Buffer } from "https://deno.land/[email protected]/io/buffer.ts";
import { copy } from "https://deno.land/[email protected]/streams/conversion.ts";
import { gunzip } from "https://deno.land/x/[email protected]/mod.ts";
import log from "./lib/log.ts";
import util from "./lib/util.ts";
import { basename, blue, cyan, dim, ensureDir, green, join, red } from "./server/deps.ts";
import { existsDir, existsFile, getFiles } from "./server/helpers.ts";
import { isCanary } from "./version.ts";
const templates = [
"api",
"react",
"vue",
"yew",
// todo:
// "preact",
// "svelte",
// "solid",
// "lit",
// "vanilla",
];
const versions = {
react: "18.2.0",
vue: "3.2.37",
};
export default async function init(nameArg?: string, template?: string) {
if (!template) {
// todo: template choose dialog
template = "react";
}
if (!(templates.includes(template))) {
log.fatal(
`Invalid template name ${red(template)}, must be one of [${blue(templates.join(","))}]`,
);
}
// get and check the project name
const name = nameArg || (prompt("Project Name:") || "").trim();
if (name === "") {
await init(nameArg, template);
return;
}
if (!/^(@[a-z0-9-~][a-z0-9-._~]*\/)?[a-z0-9-~][a-z0-9-._~]*$/.test(name)) {
log.fatal(`Invalid project name: ${red(name)}`);
}
// check the dir is clean
if (
!(await isFolderEmpty(Deno.cwd(), name)) &&
!(await confirm(`Folder ${blue(name)} already exists, continue?`))
) {
Deno.exit(1);
}
// download template
console.log("Downloading template, this might take a moment...");
const pkgName = isCanary ? "aleph_canary" : "aleph";
const res = await fetch(
`https://cdn.deno.land/${pkgName}/meta/versions.json`,
);
if (res.status !== 200) {
console.error(await res.text());
Deno.exit(1);
}
const { latest: VERSION } = await res.json();
const repo = isCanary ? "ije/aleph-canary" : "alephjs/aleph.js";
const resp = await fetch(
`https://codeload.github.com/${repo}/tar.gz/refs/tags/${VERSION}`,
);
if (resp.status !== 200) {
console.error(await resp.text());
Deno.exit(1);
}
const tarData = gunzip(new Uint8Array(await resp.arrayBuffer()));
const entryList = new Untar(new Buffer(tarData));
const appDir = join(Deno.cwd(), name);
const prefix = `${basename(repo)}-${VERSION}/examples/${template}-app/`;
// write template files
for await (const entry of entryList) {
if (entry.fileName.startsWith(prefix) && !entry.fileName.endsWith("/README.md")) {
const fp = join(appDir, util.trimPrefix(entry.fileName, prefix));
if (entry.type === "directory") {
await ensureDir(fp);
continue;
}
const file = await Deno.open(fp, { write: true, create: true });
await copy(entry, file);
}
}
const alephPkgUri = `https://deno.land/x/${pkgName}@${VERSION}`;
const denoConfig = {
"compilerOptions": {
"lib": [
"dom",
"dom.iterable",
"dom.asynciterable",
"dom.extras",
"deno.ns",
],
"types": [
`${alephPkgUri}/types.d.ts`,
],
},
"importMap": "import_map.json",
"tasks": {
"dev": "deno run -A -q server.ts --dev",
"start": "deno run -A server.ts",
"opt": "deno run -A server.ts --optimize",
},
};
const importMap = {
imports: {
"~/": "./",
"std/": "https://deno.land/[email protected]/",
"@unocss/": `${alephPkgUri}/lib/@unocss/`,
"aleph/": `${alephPkgUri}/`,
"aleph/server": `${alephPkgUri}/server/mod.ts`,
"aleph/dev": `${alephPkgUri}/server/dev.ts`,
},
scopes: {},
};
switch (template) {
case "react": {
Object.assign(denoConfig.compilerOptions, {
"jsx": "react-jsx",
"jsxImportSource": `https://esm.sh/react@${versions.react}`,
});
Object.assign(importMap.imports, {
"aleph/react": `${alephPkgUri}/runtime/react/mod.ts`,
"aleph/react-client": `${alephPkgUri}/runtime/react/client.ts`,
"aleph/react-ssr": `${alephPkgUri}/runtime/react/ssr.ts`,
"react": `https://esm.sh/react@${versions.react}`,
"react-dom": `https://esm.sh/react-dom@${versions.react}`,
"react-dom/": `https://esm.sh/react-dom@${versions.react}/`,
});
break;
}
case "vue": {
Object.assign(importMap.imports, {
"aleph/vue": `${alephPkgUri}/runtime/vue/mod.ts`,
"aleph/vue-ssr": `${alephPkgUri}/runtime/vue/ssr.ts`,
"aleph/vue-loader": `${alephPkgUri}/loaders/vue.ts`,
"vue": `https://esm.sh/vue@${versions.vue}`,
"vue/server-renderer": `https://esm.sh/@vue/server-renderer@${versions.vue}`,
});
break;
}
}
await ensureDir(appDir);
await Promise.all([
Deno.writeTextFile(
join(appDir, "deno.json"),
JSON.stringify(denoConfig, undefined, 2),
),
Deno.writeTextFile(
join(appDir, "import_map.json"),
JSON.stringify(importMap, undefined, 2),
),
]);
if (await confirm("Initialize VS Code workspace configuration?")) {
const settings = {
"deno.enable": true,
"deno.lint": true,
"deno.config": "./deno.json",
};
await ensureDir(join(appDir, ".vscode"));
await Deno.writeTextFile(
join(appDir, ".vscode", "settings.json"),
JSON.stringify(settings, undefined, 2),
);
}
await Deno.run({
cmd: [Deno.execPath(), "cache", "server.ts"],
cwd: appDir,
stderr: "inherit",
stdout: "inherit",
}).status();
console.log([
"",
green("Aleph.js is ready to go!"),
`${dim("$")} cd ${name}`,
`${dim("$")} deno task dev ${dim("# Start the server in `development` mode")}`,
`${dim("$")} deno task start ${dim("# Start the server in `production` mode")}`,
`${dim("$")} deno task opt ${dim("# Optimize the application (bundling, ssg, etc.)")}`,
"",
`Docs: ${cyan("https://alephjs.org/docs")}`,
`Bugs: ${cyan("https://github.com/alephjs/aleph.js/issues")}`,
"",
].join("\n"));
Deno.exit(0);
}
async function isFolderEmpty(root: string, name: string): Promise<boolean> {
const dir = join(root, name);
if (await existsFile(dir)) {
throw new Error(`Folder ${name} already exists as a file.`);
}
if (await existsDir(dir)) {
const files = await getFiles(dir);
return files.length === 0 ||
files.every((file) => [".DS_Store"].includes(file));
}
return true;
}
async function ask(question = ":", stdin = Deno.stdin, stdout = Deno.stdout) {
await stdout.write(new TextEncoder().encode(question + " "));
const buf = new Uint8Array(1024);
const n = <number> await stdin.read(buf);
const answer = new TextDecoder().decode(buf.subarray(0, n));
return answer.trim();
}
async function confirm(question = "are you sure?") {
let a: string;
// deno-lint-ignore no-empty
while (!/^(y|n|)$/i.test(a = (await ask(question + dim(" [y/n]"))).trim())) {}
return a.toLowerCase() === "y";
}
if (import.meta.main) {
const { _: args, ...options } = parse(Deno.args);
await init(args[0], options?.template);
}