-
Notifications
You must be signed in to change notification settings - Fork 158
/
examples.page.tsx
599 lines (565 loc) · 17.5 KB
/
examples.page.tsx
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
import { walkSync } from "@std/fs/walk";
export const layout = "raw.tsx";
export const sidebar = [
{
items: [
{
label: "Runtime Manual",
id: "/runtime/",
},
{
label: "Examples",
id: "/examples/",
},
{
label: "API reference",
id: "/api/deno",
},
{
label: "Deploy",
id: "/deploy/manual/",
},
{
label: "Subhosting",
id: "/subhosting/manual/",
},
{
label: "deno.com",
id: "https://deno.com",
},
],
},
];
export default function* (_data: Lume.Data, helpers: Lume.Helpers) {
const files = [
...walkSync("./examples/", {
exts: [".ts"],
}),
];
const examples = files.map((file) => {
const content = Deno.readTextFileSync(file.path);
return {
name: file.name,
content,
label: file.name.replace(".ts", ""),
parsed: parseExample(file.name, content),
} as ReturnedContent;
});
for (const example of examples) {
const contentNoCommentary = example.parsed.files.map((file) =>
file.snippets.map((snippet) => snippet.code).join("\n")
).join("\n");
const url =
`https://github.com/denoland/deno-docs/blob/main/examples/${example.name}${
example.parsed.files.length > 1 ? "/main" : ""
}`;
const rawUrl = `https://docs.deno.com/examples/${example.name}${
example.parsed.files.length > 1 ? "/main" : ""
}`;
yield {
url: `/examples/${example.label}/index.html`,
title: `${example.parsed.title} - Deno by Example`,
content: (
<div>
<main
id="content"
class="max-w-screen-lg flex flex-col gap-8 mx-4 md:mx-auto pt-6 mb-20"
>
<div class="flex flex-col gap-4 md:flex-row justify-between items-start md:items-center">
<div class="flex flex-col gap-2">
<h1 class="text-3xl font-bold">
{example.parsed.title}
</h1>
{example.parsed.description && (
<p
className="max-w-prose"
dangerouslySetInnerHTML={{
__html: example.parsed.description,
}}
/>
)}
</div>
<a
href={url}
class="px-4 py-2 rounded bg-background-secondary text-sm border border-foreground-secondary hover:bg-background-primary text-foreground-primary"
>
Edit on Github
</a>
</div>
<div class="relative block">
<CopyButton text={contentNoCommentary} />
</div>
{example.parsed.files.map((file) => (
<div class="flex flex-col gap-4 md:gap-0" key={file.name}>
{file.snippets.map((snippet, i) => (
<SnippetComponent
key={i}
firstOfFile={i === 0}
lastOfFile={i === file.snippets.length - 1}
filename={file.name}
snippet={snippet}
/>
))}
</div>
))}
<div>
{example.parsed.run && (
<>
<p class="mt-4 mb-4">
Run{" "}
<a
href={url}
class="text-primary hover:underline focus:underline"
>
this example
</a>{" "}
locally using the Deno CLI:
</p>
<div
data-color-mode="light"
data-dark-theme="dark"
data-light-theme="light"
class="markdown-body"
>
<pre className="highlight">
<code>
{example.parsed.run.startsWith("deno")
? example.parsed.run.replace("<url>", url)
: "deno run " +
example.parsed.run.replace("<url>", rawUrl)}
</code>
</pre>
</div>
</>
)}
{example.parsed.playground && (
<div class="col-span-3 mt-8">
<p class="text-foreground-secondary">
Try this example in a Deno Deploy playground:
</p>
<p class="mt-3">
<a
class="py-2 px-4 bg-black inline-block text-white text-base rounded-md opacity-90 hover:opacity-100"
href={example.parsed.playground}
target="_blank"
rel="noreferrer"
>
Deploy
</a>
</p>
</div>
)}
{example.parsed.additionalResources.length > 0 && (
<div class="col-span-3 mt-12 pt-6 border-t-1 border-gray-200">
<h2 class="font-semibold">Additional resources</h2>
<ul class="list-none mt-1">
{example.parsed.additionalResources.map(([link, title]) => (
<li
class="text-gray-700 hover:text-gray-900"
key={link + title}
>
<a
class="text-primary hover:underline focus:underline"
href={link}
>
{title}
</a>
</li>
))}
</ul>
</div>
)}
</div>
</main>
</div>
),
};
}
const groupMap: [string, string][] = [
["Basics", "IconFlag3"],
["Encoding", "IconTransform"],
["CLI", "IconTerminal2"],
["Network", "IconNetwork"],
["System", "IconDeviceDesktop"],
["File System", "IconFiles"],
["Databases", "IconDatabase"],
["Scheduled Tasks", "IconClock"],
["Cryptography", "IconFileShredder"],
["Advanced", "IconStars"],
["Unstable APIs", "IconPersonDigging"],
];
const groups = examples.reduce((acc, example) => {
const group = example.parsed.group || "Basics";
const lowerGroup = group.toLowerCase();
if (!acc[lowerGroup]) {
acc[lowerGroup] = [];
}
if (!groupMap.find(([category]) => category.toLowerCase() === lowerGroup)) {
groupMap.push([group.toLowerCase(), "IconFlag3"]);
}
acc[lowerGroup].push(example);
return acc;
}, {});
const elements = groupMap.map(([category, icon]) => {
const group = groups[category.toLowerCase()];
if (!group) {
return null;
}
group.sort((a, b) => a.parsed.sortOrder - b.parsed.sortOrder);
return (
<section
key={category}
className="mb-12 [-webkit-column-break-inside:avoid;]"
>
<h2 className="text-xl mb-2 block border-solid border-t-0 border-x-0 border-b border-b-gray-300 dark:border-b-gray-600 pb-1">
{category}
</h2>
<ul className="list-none pl-0">
{group.map((example) => {
return (
<li key={example.parsed.id} className="leading-loose">
<a
href={"/examples/" + example.parsed.id.replace(".ts", "")}
className="text-inherit underline decoration-gray-300 dark:decoration-gray-600"
>
{example.parsed.title}
</a>
</li>
);
})}
</ul>
</section>
);
});
yield {
url: `/examples/`,
title: `Deno by Example`,
content: (
<main
id="content"
className="w-full flex flex-col px-8 pt-6 mt-16 md:items-center md:justify-center md:flex-row gap-0 md:gap-16 max-w-screen-xl mx-auto mb-20"
>
<div className="pb-16 align-middle md:pb-0 w-full">
<div className="mt-8 mb-16 md:mb-24 text-center">
<img
className="w-full max-w-32 mx-auto h-auto mb-4"
alt="Deno Examples"
src="/examples.png"
/>
<h1 className="text-4xl md:text-6xl font-semibold mb-4">
Deno by Example
</h1>
<p className="max-w-prose mx-auto">
A collection of annotated Deno examples, to be used as a reference
for how to build with Deno, or as a guide to learn about many of
Deno's features.
<a
href="/runtime/contributing/examples/"
className="homepage-link runtime-link text-center mt-4"
>
Commit an example and we'll send you some stickers!
</a>
</p>
</div>
<div
className="columns-1 sm:columns-2 lg:columns-3 xl:columns-4"
style={{ columnGap: "3rem" }}
>
{elements}
</div>
<div className="w-full flex flex-col px-8 pt-6 mt-20 md:items-center md:justify-center md:flex-row gap-0 md:gap-16 max-w-screen-xl mx-auto mb-24">
<p className="max-w-prose mx-auto text-center">
Need an example that isn't here? Or want to add one of your own?
<br /> We welcome contributions! <br />
You can request more examples, or add your own at our{" "}
<a
href="https://github.com/denoland/deno-docs?tab=readme-ov-file#examples"
class="text-primary hover:underline focus:underline"
>
GitHub repository
</a>
</p>
</div>
</div>
</main>
),
};
}
function SnippetComponent(props: {
filename: string;
firstOfFile: boolean;
lastOfFile: boolean;
snippet: ExampleSnippet;
}) {
return (
<div class="grid grid-cols-1 sm:grid-cols-10 gap-x-8">
<div
class={`italic select-none text-sm ${
props.snippet.text ? "pb-4 md:pb-0 " : " "
} ${props.snippet.code ? "col-span-3" : "mt-4 col-span-full"}`}
>
{props.snippet.text}
</div>
<div
class={`col-span-7 relative ${
props.snippet.code.length === 0 ? "hidden sm:block" : ""
}`}
>
{props.filename && (
<span
class={`font-mono text-xs absolute -top-3 left-4 z-10 p-1 rounded-sm ${
props.firstOfFile ? "block" : "block sm:hidden"
}`}
>
{props.filename}
</span>
)}
<div class="-mx-4 h-full sm:mx-0 overflow-scroll sm:overflow-hidden relative gfm-highlight">
{props.snippet.code && (
<div
data-color-mode="light"
data-dark-theme="dark"
data-light-theme="light"
class="nocopy h-full markdown-body"
>
<pre
class="highlight snippet-code language-ts"
data-example-position={props.firstOfFile
? "first"
: props.lastOfFile
? "last"
: "middle"}
>
<code
dangerouslySetInnerHTML={{ __html: props.snippet.code }}
></code>
</pre>
</div>
)}
</div>
</div>
</div>
);
}
export function CopyButton(props: { text: string }) {
return (
<button
type="button"
aria-label="Copy code to clipboard"
title="Copy"
class="clean-btn copy-all absolute right-2 top-10 hover:bg-gray-200 text-gray-900 p-2 rounded-md z-10"
data-copy={props.text}
>
<svg viewBox="0 0 24 24" width="15" height="15">
<path
fill="currentColor"
d="M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z"
>
</path>
</svg>
</button>
);
}
export const TAGS = {
cli: {
title: "cli",
description: "Works in Deno CLI",
},
deploy: {
title: "deploy",
description: "Works on Deno Deploy",
},
web: {
title: "web",
description: "Works in on the Web",
},
};
export const DIFFICULTIES = {
beginner: {
title: "Beginner",
description: "No significant prior knowledge is required for this example.",
},
intermediate: {
title: "Intermediate",
description: "Some prior knowledge is needed for this example.",
},
};
type ReturnedContent = {
name: string;
content: string;
label: string;
parsed: Example;
};
export interface Example {
id: string;
title: string;
description: string;
difficulty: keyof typeof DIFFICULTIES;
tags: (keyof typeof TAGS)[];
additionalResources: [string, string][];
run?: string;
playground?: string;
files: ExampleFile[];
group: string;
sortOrder: any;
}
export interface ExampleFile {
name: string;
snippets: ExampleSnippet[];
}
export interface ExampleSnippet {
text: string;
code: string;
}
export function parseExample(id: string, file: string): Example {
// Extract the multi line JS doc comment at the top of the file
const [, jsdoc, rest] = file.match(/^\s*\/\*\*(.*?)\*\/\s*(.*)/s) || [];
// Extract the @key value pairs from the JS doc comment
let description = "";
const kvs: Record<string, string> = {};
const resources = [];
for (let line of jsdoc.split("\n")) {
line = line.trim().replace(/^\*/, "").trim();
const [, key, value] = line.match(/^\s*@(\w+)\s+(.*)/) || [];
if (key) {
if (key === "resource") {
resources.push(value);
} else {
kvs[key] = value.trim();
}
} else {
description += " " + line;
}
}
description = description.trim();
// Separate the code into snippets.
const files: ExampleFile[] = [
{
name: "",
snippets: [],
},
];
let parseMode = "code";
let currentFile = files[0];
let text = "";
let code = "";
for (const line of rest.split("\n")) {
const trimmedLine = line.trim();
if (parseMode == "code") {
if (line.startsWith("// File:")) {
if (text || code.trimEnd()) {
code = code.trimEnd();
currentFile.snippets.push({ text, code });
text = "";
code = "";
}
const name = line.slice(8).trim();
if (currentFile.snippets.length == 0) {
currentFile.name = name;
} else {
currentFile = {
name,
snippets: [],
};
files.push(currentFile);
}
} else if (line.startsWith("/* File:")) {
if (text || code.trimEnd()) {
code = code.trimEnd();
currentFile.snippets.push({ text, code });
text = "";
code = "";
}
const name = line.slice(8).trim();
if (currentFile.snippets.length == 0) {
currentFile.name = name;
} else {
currentFile = {
name,
snippets: [],
};
files.push(currentFile);
}
parseMode = "file";
} else if (
trimmedLine.startsWith("// deno-lint-ignore") ||
trimmedLine.startsWith("//deno-lint-ignore") ||
trimmedLine.startsWith("// deno-fmt-ignore") ||
trimmedLine.startsWith("//deno-fmt-ignore")
) {
// skip deno directives
} else if (trimmedLine.startsWith("//-")) {
code += line.replace("//-", "//") + "\n";
} else if (trimmedLine.startsWith("//")) {
if (text || code.trimEnd()) {
code = code.trimEnd();
currentFile.snippets.push({ text, code });
}
text = trimmedLine.slice(2).trim();
code = "";
parseMode = "comment";
} else {
code += line + "\n";
}
} else if (parseMode == "comment") {
if (
trimmedLine.startsWith("// deno-lint-ignore") ||
trimmedLine.startsWith("//deno-lint-ignore") ||
trimmedLine.startsWith("// deno-fmt-ignore") ||
trimmedLine.startsWith("//deno-fmt-ignore")
) {
// skip deno directives
} else if (trimmedLine.startsWith("//")) {
text += " " + trimmedLine.slice(2).trim();
} else {
code += line + "\n";
parseMode = "code";
}
} else if (parseMode == "file") {
if (line == "*/") {
parseMode = "code";
} else {
code += line + "\n";
}
}
}
if (text || code.trimEnd()) {
code = code.trimEnd();
currentFile.snippets.push({ text, code });
}
if (!kvs.title) {
throw new Error("Missing title in JS doc comment.");
}
const tags = kvs.tags.split(",").map((s) => s.trim() as keyof typeof TAGS);
for (const tag of tags) {
if (!TAGS[tag]) {
throw new Error(`Unknown tag '${tag}'`);
}
}
const difficulty = kvs.difficulty as keyof typeof DIFFICULTIES;
if (!DIFFICULTIES[difficulty]) {
throw new Error(`Unknown difficulty '${difficulty}'`);
}
const additionalResources: [string, string][] = [];
for (const resource of resources) {
// @resource {https://jsr.io/@std/http/server/~/} std/http/server
const [_, url, title] = resource.match(/^\{(.*?)\}\s(.*)/) || [];
if (!url || !title) {
throw new Error(`Invalid resource: ${resource}`);
}
additionalResources.push([url, title]);
}
return {
id,
title: kvs.title,
description,
difficulty,
tags,
additionalResources,
run: kvs.run,
playground: kvs.playground,
files,
group: kvs.group || "Misc",
sortOrder: kvs.sortOrder || 999999,
};
}