-
Notifications
You must be signed in to change notification settings - Fork 742
Expand file tree
/
Copy pathinit.ts
More file actions
732 lines (654 loc) · 19.2 KB
/
init.ts
File metadata and controls
732 lines (654 loc) · 19.2 KB
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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
// deno-lint-ignore-file no-console
import * as colors from "@std/fmt/colors";
import * as path from "@std/path";
// Keep these as is, as we replace these version in our release script
const FRESH_VERSION = "2.0.0-alpha.45";
const FRESH_TAILWIND_VERSION = "0.0.1-alpha.9";
const PREACT_VERSION = "10.26.9";
const PREACT_SIGNALS_VERSION = "2.2.1";
const TAILWINDCSS_VERSION = "4.1.10";
const TAILWINDCSS_POSTCSS_VERSION = "4.1.10";
const POSTCSS_VERSION = "8.5.6";
function css(strs: TemplateStringsArray, ...exprs: string[]): string {
let out = "";
for (let i = 0; i < exprs.length; i++) {
out += strs[i];
out += String(exprs[i]);
}
out += strs.at(-1) ?? "";
return out;
}
export class InitError extends Error {}
function error(message: string): never {
console.error(`%cerror%c: ${message}`, "color: red; font-weight: bold", "");
throw new InitError();
}
export const HELP_TEXT = `@fresh/init
Initialize a new Fresh project. This will create all the necessary files for a
new project.
To generate a project in the './foobar' subdirectory:
deno run -Ar jsr:@fresh/init ./foobar
To generate a project in the current directory:
deno run -Ar jsr:@fresh/init .
USAGE:
deno run -Ar jsr:@fresh/init [DIRECTORY]
OPTIONS:
--force Overwrite existing files
--tailwind Use Tailwind for styling
--vscode Setup project for VS Code
--docker Setup Project to use Docker
`;
export const CONFIRM_EMPTY_MESSAGE =
"The target directory is not empty (files could get overwritten). Do you want to continue anyway?";
export const CONFIRM_TAILWIND_MESSAGE = `Set up ${
colors.cyan("Tailwind CSS")
} for styling?`;
export const CONFIRM_VSCODE_MESSAGE = `Do you use ${colors.cyan("VS Code")}?`;
export async function initProject(
cwd = Deno.cwd(),
input: (string | number)[],
flags: {
docker?: boolean | null;
force?: boolean | null;
tailwind?: boolean | null;
vscode?: boolean | null;
} = {},
): Promise<void> {
console.log();
console.log(
colors.bgRgb8(
colors.rgb8(" 🍋 Fresh: The next-gen web framework. ", 0),
121,
),
);
console.log();
let unresolvedDirectory = Deno.args[0];
if (input.length !== 1) {
const userInput = prompt(
"Project Name:",
"fresh-project",
);
if (!userInput) {
error(HELP_TEXT);
}
unresolvedDirectory = userInput;
}
const projectDir = path.resolve(cwd, unresolvedDirectory);
try {
const dir = [...Deno.readDirSync(projectDir)];
const isEmpty = dir.length === 0 ||
dir.length === 1 && dir[0].name === ".git";
if (
!isEmpty &&
!(flags.force === null ? confirm(CONFIRM_EMPTY_MESSAGE) : flags.force)
) {
error("Directory is not empty.");
}
} catch (err) {
if (!(err instanceof Deno.errors.NotFound)) {
throw err;
}
}
const useDocker = flags.docker;
let useTailwind = flags.tailwind || false;
if (flags.tailwind == null) {
if (
confirm(CONFIRM_TAILWIND_MESSAGE)
) {
useTailwind = true;
}
}
const useVSCode = flags.vscode == null
? confirm(CONFIRM_VSCODE_MESSAGE)
: flags.vscode;
const writeFile = async (
pathname: string,
content:
| string
| Uint8Array
| ReadableStream<Uint8Array>
| Record<string, unknown>,
) => await writeProjectFile(projectDir, pathname, content);
const GITIGNORE = `# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
.env.local
# Fresh build directory
_fresh/
# npm + other dependencies
node_modules/
vendor/
`;
await writeFile(".gitignore", GITIGNORE);
if (useDocker) {
const DENO_VERSION = Deno.version.deno;
const DOCKERFILE_TEXT = `
FROM denoland/deno:${DENO_VERSION}
ARG GIT_REVISION
ENV DENO_DEPLOYMENT_ID=\${GIT_REVISION}
WORKDIR /app
COPY . .
RUN deno cache _fresh/server.js
EXPOSE 8000
CMD ["serve", "-A", "_fresh/server.js"]
`;
await writeFile("Dockerfile", DOCKERFILE_TEXT);
}
// deno-fmt-ignore
const GRADIENT_CSS = css`.fresh-gradient {
background-color: rgb(134, 239, 172);
background-image: linear-gradient(
to right bottom,
rgb(219, 234, 254),
rgb(187, 247, 208),
rgb(254, 249, 195)
);
}`;
// deno-fmt-ignore
const NO_TAILWIND_STYLES = css`*,
*::before,
*::after {
box-sizing: border-box;
}
* {
margin: 0;
}
button {
color: inherit;
}
button, [role="button"] {
cursor: pointer;
}
code {
font-family:
ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
"Courier New", monospace;
font-size: 1em;
}
img,
svg {
display: block;
}
img,
video {
max-width: 100%;
height: auto;
}
html {
line-height: 1.5;
-webkit-text-size-adjust: 100%;
font-family:
ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
"Noto Color Emoji";
}
.transition-colors {
transition-property: background-color, border-color, color, fill, stroke;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 150ms;
}
.my-6 {
margin-bottom: 1.5rem;
margin-top: 1.5rem;
}
.text-4xl {
font-size: 2.25rem;
line-height: 2.5rem;
}
.mx-2 {
margin-left: 0.5rem;
margin-right: 0.5rem;
}
.my-4 {
margin-bottom: 1rem;
margin-top: 1rem;
}
.mx-auto {
margin-left: auto;
margin-right: auto;
}
.px-4 {
padding-left: 1rem;
padding-right: 1rem;
}
.py-8 {
padding-bottom: 2rem;
padding-top: 2rem;
}
.bg-\\[\\#86efac\\] {
background-color: #86efac;
}
.text-3xl {
font-size: 1.875rem;
line-height: 2.25rem;
}
.py-6 {
padding-bottom: 1.5rem;
padding-top: 1.5rem;
}
.px-2 {
padding-left: 0.5rem;
padding-right: 0.5rem;
}
.py-1 {
padding-bottom: 0.25rem;
padding-top: 0.25rem;
}
.border-gray-500 {
border-color: #6b7280;
}
.bg-white {
background-color: #fff;
}
.flex {
display: flex;
}
.gap-8 {
grid-gap: 2rem;
gap: 2rem;
}
.font-bold {
font-weight: 700;
}
.max-w-screen-md {
max-width: 768px;
}
.flex-col {
flex-direction: column;
}
.items-center {
align-items: center;
}
.justify-center {
justify-content: center;
}
.border-2 {
border-width: 2px;
}
.rounded-sm {
border-radius: 0.25rem;
}
.hover\\:bg-gray-200:hover {
background-color: #e5e7eb;
}
.tabular-nums {
font-variant-numeric: tabular-nums;
}
${GRADIENT_CSS}`;
// deno-fmt-ignore
const TAILWIND_CSS = css`@import "tailwindcss";
${GRADIENT_CSS}`;
const cssStyles = useTailwind ? TAILWIND_CSS : NO_TAILWIND_STYLES;
await writeFile("static/styles.css", cssStyles);
// deno-fmt-ignore
const STATIC_LOGO =
`<svg width="40" height="40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M34.092 8.845C38.929 20.652 34.092 27 30 30.5c1 3.5-2.986 4.222-4.5 2.5-4.457 1.537-13.512 1.487-20-5C2 24.5 4.73 16.714 14 11.5c8-4.5 16-7 20.092-2.655Z"
fill="#FFDB1E"
/>
<path
d="M14 11.5c6.848-4.497 15.025-6.38 18.368-3.47C37.5 12.5 21.5 22.612 15.5 25c-6.5 2.587-3 8.5-6.5 8.5-3 0-2.5-4-5.183-7.75C2.232 23.535 6.16 16.648 14 11.5Z"
fill="#fff"
stroke="#FFDB1E"
/>
<path
d="M28.535 8.772c4.645 1.25-.365 5.695-4.303 8.536-3.732 2.692-6.606 4.21-7.923 4.83-.366.173-1.617-2.252-1.617-1 0 .417-.7 2.238-.934 2.326-1.365.512-4.223 1.29-5.835 1.29-3.491 0-1.923-4.754 3.014-9.122.892-.789 1.478-.645 2.283-.645-.537-.773-.534-.917.403-1.546C17.79 10.64 23 8.77 25.212 8.42c.366.014.82.35.82.629.41-.14 2.095-.388 2.503-.278Z"
fill="#FFE600"
/>
<path
d="M14.297 16.49c.985-.747 1.644-1.01 2.099-2.526.566.121.841-.08 1.29-.701.324.466 1.657.608 2.453.701-.715.451-1.057.852-1.452 2.106-1.464-.611-3.167-.302-4.39.42Z"
fill="#fff"
/>
</svg>`;
await writeFile("static/logo.svg", STATIC_LOGO);
try {
const res = await fetch("https://fresh.deno.dev/favicon.ico");
const buf = await res.arrayBuffer();
await writeFile("static/favicon.ico", new Uint8Array(buf));
} catch {
// Skip this and be silent if there is a network issue.
}
const MAIN_TS = `import { App, staticFiles } from "fresh";
import { define, type State } from "./utils.ts";
export const app = new App<State>();
app.use(staticFiles());
// this is the same as the /api/:name route defined via a file. feel free to delete this!
app.get("/api2/:name", (ctx) => {
const name = ctx.params.name;
return new Response(
\`Hello, \${name.charAt(0).toUpperCase() + name.slice(1)}!\`,
);
});
// this can also be defined via a file. feel free to delete this!
const exampleLoggerMiddleware = define.middleware((ctx) => {
console.log(\`\${ctx.req.method} \${ctx.req.url}\`);
return ctx.next();
});
app.use(exampleLoggerMiddleware);
// Include file-system based routes here
app.fsRoutes();`;
await writeFile("main.ts", MAIN_TS);
const COMPONENTS_BUTTON_TSX =
`import type { ComponentChildren } from "preact";
export interface ButtonProps {
id?: string;
onClick?: () => void;
children?: ComponentChildren;
disabled?: boolean;
}
export function Button(props: ButtonProps) {
return (
<button
{...props}
class="px-2 py-1 border-gray-500 border-2 rounded-sm bg-white hover:bg-gray-200 transition-colors"
/>
);
}`;
await writeFile("components/Button.tsx", COMPONENTS_BUTTON_TSX);
const UTILS_TS = `import { createDefine } from "fresh";
// deno-lint-ignore no-empty-interface
export interface State {}
export const define = createDefine<State>();`;
await writeFile("utils.ts", UTILS_TS);
const ROUTES_HOME = `import { useSignal } from "@preact/signals";
import { define } from "../utils.ts";
import Counter from "../islands/Counter.tsx";
export default define.page(function Home() {
const count = useSignal(3);
return (
<div class="px-4 py-8 mx-auto fresh-gradient">
<div class="max-w-screen-md mx-auto flex flex-col items-center justify-center">
<img
class="my-6"
src="/logo.svg"
width="128"
height="128"
alt="the Fresh logo: a sliced lemon dripping with juice"
/>
<h1 class="text-4xl font-bold">Welcome to Fresh</h1>
<p class="my-4">
Try updating this message in the
<code class="mx-2">./routes/index.tsx</code> file, and refresh.
</p>
<Counter count={count} />
</div>
</div>
);
});`;
await writeFile("routes/index.tsx", ROUTES_HOME);
const APP_WRAPPER = `import type { PageProps } from "fresh";
export default function App({ Component }: PageProps) {
return (
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>${path.basename(projectDir)}</title>
<link rel="stylesheet" href="/styles.css" />
</head>
<body>
<Component />
</body>
</html>
);
}`;
await writeFile("routes/_app.tsx", APP_WRAPPER);
const API_NAME = `import { define } from "../../utils.ts";
export const handler = define.handlers({
GET(ctx) {
const name = ctx.params.name;
return new Response(
\`Hello, \${name.charAt(0).toUpperCase() + name.slice(1)}!\`,
);
},
});`;
await writeFile("routes/api/[name].tsx", API_NAME);
const ISLANDS_COUNTER_TSX = `import type { Signal } from "@preact/signals";
import { Button } from "../components/Button.tsx";
interface CounterProps {
count: Signal<number>;
}
export default function Counter(props: CounterProps) {
return (
<div class="flex gap-8 py-6">
<Button id="decrement" onClick={() => props.count.value -= 1}>-1</Button>
<p class="text-3xl tabular-nums">{props.count}</p>
<Button id="increment" onClick={() => props.count.value += 1}>+1</Button>
</div>
);
}`;
await writeFile("islands/Counter.tsx", ISLANDS_COUNTER_TSX);
const DEV_TS = `#!/usr/bin/env -S deno run -A --watch=static/,routes/
${useTailwind ? `import { tailwind } from "@fresh/plugin-tailwind";\n` : ""}
import { Builder } from "fresh/dev";
const builder = new Builder();
${useTailwind ? "tailwind(builder);" : ""}
if (Deno.args.includes("build")) {
await builder.build();
} else {
await builder.listen(() => import("./main.ts"));
}`;
await writeFile("dev.ts", DEV_TS);
const denoJson = {
nodeModulesDir: "auto",
tasks: {
check: "deno fmt --check . && deno lint . && deno check",
dev: "deno run -A --watch=static/,routes/ dev.ts",
build: "deno run -A dev.ts build",
start: "deno serve -A _fresh/server.js",
update: "deno run -A -r jsr:@fresh/update .",
},
lint: {
rules: {
tags: ["fresh", "recommended"],
},
},
exclude: ["**/_fresh/*"],
imports: {
"fresh": `jsr:@fresh/core@^${FRESH_VERSION}`,
"preact": `npm:preact@^${PREACT_VERSION}`,
"@preact/signals": `npm:@preact/signals@^${PREACT_SIGNALS_VERSION}`,
} as Record<string, string>,
compilerOptions: {
lib: ["dom", "dom.asynciterable", "dom.iterable", "deno.ns"],
jsx: "precompile",
jsxImportSource: "preact",
jsxPrecompileSkipElements: [
"a",
"img",
"source",
"body",
"html",
"head",
],
},
};
if (useTailwind) {
denoJson.imports["tailwindcss"] = `npm:tailwindcss@^${TAILWINDCSS_VERSION}`;
denoJson.imports["@fresh/plugin-tailwind"] =
`jsr:@fresh/plugin-tailwind@^${FRESH_TAILWIND_VERSION}`;
denoJson.imports["@tailwindcss/postcss"] =
`npm:@tailwindcss/postcss@^${TAILWINDCSS_POSTCSS_VERSION}`;
denoJson.imports["postcss"] = `npm:postcss@^${POSTCSS_VERSION}`;
}
await writeFile("deno.json", denoJson);
const README_MD = `# Fresh project
Your new Fresh project is ready to go. You can follow the Fresh "Getting
Started" guide here: https://fresh.deno.dev/docs/getting-started
### Usage
Make sure to install Deno:
https://docs.deno.com/runtime/getting_started/installation
Then start the project in development mode:
\`\`\`
deno task dev
\`\`\`
This will watch the project directory and restart as necessary.`;
await writeFile("README.md", README_MD);
if (useVSCode) {
const vscodeSettings = {
"deno.enable": true,
"deno.lint": true,
"editor.defaultFormatter": "denoland.vscode-deno",
"[typescriptreact]": {
"editor.defaultFormatter": "denoland.vscode-deno",
},
"[typescript]": {
"editor.defaultFormatter": "denoland.vscode-deno",
},
"[javascriptreact]": {
"editor.defaultFormatter": "denoland.vscode-deno",
},
"[javascript]": {
"editor.defaultFormatter": "denoland.vscode-deno",
},
"css.customData": useTailwind ? [".vscode/tailwind.json"] : undefined,
};
await writeFile(".vscode/settings.json", vscodeSettings);
const recommendations = ["denoland.vscode-deno"];
if (useTailwind) recommendations.push("bradlc.vscode-tailwindcss");
await writeFile(".vscode/extensions.json", { recommendations });
if (useTailwind) {
const tailwindCustomData = {
"version": 1.1,
"atDirectives": [
{
"name": "@tailwind",
"description":
"Use the `@tailwind` directive to insert Tailwind's `base`, `components`, `utilities` and `screens` styles into your CSS.",
"references": [
{
"name": "Tailwind Documentation",
"url":
"https://tailwindcss.com/docs/functions-and-directives#tailwind",
},
],
},
{
"name": "@apply",
"description":
"Use the `@apply` directive to inline any existing utility classes into your own custom CSS. This is useful when you find a common utility pattern in your HTML that you’d like to extract to a new component.",
"references": [
{
"name": "Tailwind Documentation",
"url":
"https://tailwindcss.com/docs/functions-and-directives#apply",
},
],
},
{
"name": "@responsive",
"description":
"You can generate responsive variants of your own classes by wrapping their definitions in the `@responsive` directive:\n```css\n@responsive {\n .alert {\n background-color: #E53E3E;\n }\n}\n```\n",
"references": [
{
"name": "Tailwind Documentation",
"url":
"https://tailwindcss.com/docs/functions-and-directives#responsive",
},
],
},
{
"name": "@screen",
"description":
"The `@screen` directive allows you to create media queries that reference your breakpoints by **name** instead of duplicating their values in your own CSS:\n```css\n@screen sm {\n /* ... */\n}\n```\n…gets transformed into this:\n```css\n@media (min-width: 640px) {\n /* ... */\n}\n```\n",
"references": [
{
"name": "Tailwind Documentation",
"url":
"https://tailwindcss.com/docs/functions-and-directives#screen",
},
],
},
{
"name": "@variants",
"description":
"Generate `hover`, `focus`, `active` and other **variants** of your own utilities by wrapping their definitions in the `@variants` directive:\n```css\n@variants hover, focus {\n .btn-brand {\n background-color: #3182CE;\n }\n}\n```\n",
"references": [
{
"name": "Tailwind Documentation",
"url":
"https://tailwindcss.com/docs/functions-and-directives#variants",
},
],
},
],
};
await writeFile(".vscode/tailwind.json", tailwindCustomData);
}
}
// Specifically print unresolvedDirectory, rather than resolvedDirectory in order to
// not leak personal info (e.g. `/Users/MyName`)
console.log(
"\n%cProject initialized!\n",
"color: green; font-weight: bold",
);
if (unresolvedDirectory !== ".") {
console.log(
`Enter your project directory using %ccd ${unresolvedDirectory}%c.`,
"color: cyan",
"",
);
}
console.log(
"Run %cdeno task dev%c to start the project. %cCTRL-C%c to stop.",
"color: cyan",
"",
"color: cyan",
"",
);
console.log();
console.log(
"Stuck? Join our Discord %chttps://discord.gg/deno",
"color: cyan",
"",
);
console.log();
console.log(
"%cHappy hacking! 🦕",
"color: gray",
);
}
async function writeProjectFile(
projectDir: string,
pathname: string,
content:
| string
| Uint8Array
| ReadableStream<Uint8Array>
| Record<string, unknown>,
) {
const filePath = path.join(
projectDir,
...pathname.split("/").filter(Boolean),
);
try {
await Deno.mkdir(
path.dirname(filePath),
{ recursive: true },
);
if (typeof content === "string") {
let formatted = content;
if (!content.endsWith("\n\n")) {
formatted += "\n";
}
await Deno.writeTextFile(filePath, formatted);
} else if (
content instanceof Uint8Array || content instanceof ReadableStream
) {
await Deno.writeFile(filePath, content);
} else {
await Deno.writeTextFile(
filePath,
JSON.stringify(content, null, 2) + "\n",
);
}
} catch (err) {
if (!(err instanceof Deno.errors.AlreadyExists)) {
throw err;
}
}
}