forked from OnedocLabs/react-print-pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuildTemplates.tsx
152 lines (131 loc) · 4.19 KB
/
buildTemplates.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
import { glob } from "glob";
import { join, relative, dirname, basename, resolve } from "path";
import { build } from "tsup";
import { renderPreview } from "./renderPreview";
import React from "react";
import remarkFrontmatter from "remark-frontmatter";
import frontmatter from "front-matter";
import { promises as fs } from "fs";
import { formatCamelCaseToTitle, formatSnippet } from "./utils";
import { RawPlugin } from "../build/raw";
const tmpDir = join(__dirname, "../.tmp");
export async function buildTemplates() {
const { default: mdx } = await import("@mdx-js/esbuild");
const templates = await glob(join(__dirname, "../src/ui/**/*.mdx"));
return await Promise.all(
templates.map(async (template) => {
console.log("Building for template ", template);
const outPath =
join(
tmpDir,
dirname(relative(join(__dirname, "../src"), template)),
basename(template, ".mdx")
) + ".js";
const docLocation = join(
__dirname,
`../docs/${dirname(
relative(join(__dirname, "../src"), template)
)}/${basename(template)}`
);
await build({
entry: [template],
esbuildPlugins: [
mdx({
remarkPlugins: [remarkFrontmatter],
providerImportSource: "@fileforge/react-print/mdx",
}),
RawPlugin(),
],
dts: false,
outDir: dirname(outPath),
format: "cjs",
sourcemap: false,
splitting: false,
bundle: true,
config: false,
clean: true,
});
const { default: Component } = await import(outPath);
const RealComponent = Component.default ? Component.default : Component;
const { attributes, body } = frontmatter<{
title?: string;
description?: string;
icon?: string;
category?: string;
}>(
await fs
.readFile(template, {
encoding: "utf-8",
})
.then((file) => file.toString())
);
const paths = await renderPreview(
<RealComponent />,
`${dirname(relative(join(__dirname, "../src"), template)).replace(
/\//g,
" "
)} ${basename(outPath, ".js")}`,
docLocation,
false
);
const name =
attributes.title || formatCamelCaseToTitle(basename(template, ".mdx"));
let markdown = `---
title: ${name}
${attributes.icon ? `icon: ${attributes.icon}` : ""}
category: ${attributes.category || "Uncategorized"}
---\n\n`;
markdown += `<Frame background="subtle"><img src="${paths.imagePath}" style={{ width: '100%', height: 'auto', maxHeight: '500px', borderRadius: "0.25rem", overflow: "hidden", border: '1px solid #E5E4E2' }} /></Frame>\n\n`;
markdown += `\`\`\`jsx
${await formatSnippet(body)}
\`\`\`\n\n`;
return {
name,
icon: attributes.icon,
category: attributes.category,
path: relative(join(__dirname, "../src"), template)
.toLowerCase()
.replace(/\.mdx$/, ""),
image: resolve(docLocation, paths.imagePath),
outputPath: docLocation,
markdown,
};
})
);
}
export const buildTemplateList = async (
templates: Awaited<ReturnType<typeof buildTemplates>>,
path: string
) => {
let markdown = `---
title: Browse
icon: list
---\n\n`;
// Group templates by category
const categories: {
[key: string]: Awaited<ReturnType<typeof buildTemplates>>[0][];
} = templates.reduce((acc, template) => {
const category = template.category || "Uncategorized";
if (!acc[category]) {
acc[category] = [];
}
acc[category].push(template);
return acc;
}, {});
// Generate markdown for each category
Object.entries(categories).forEach(([category, templates]) => {
markdown += `## ${category}\n\n<CardGroup>\n`;
templates.forEach((template) => {
markdown += ` <Card title="${template.name}" href="${relative(
path,
template.path
)}">
<div style={{ marginTop: "1rem", borderRadius: "0.25rem", overflow: "hidden" }}>
<img src="${relative(path, template.image)}"/>
</div>
</Card>\n`;
});
markdown += `</CardGroup>\n\n`;
});
return markdown;
};