forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbundle-setup-content.ts
More file actions
293 lines (260 loc) · 8.11 KB
/
Copy pathbundle-setup-content.ts
File metadata and controls
293 lines (260 loc) · 8.11 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
// Bundle setup content for shell-docs.
//
// Integration packages own small setup snippets at:
//
// showcase/integrations/<slug>/docs/setup/<concept>.mdx
//
// shell-docs runs without integration package sources in production, so these
// snippets have to be expanded while the Docker builder still has
// showcase/integrations available. This script rewrites static <DemoCode />
// references into fenced code blocks and emits a JSON bundle that shell-docs
// can import at runtime.
import fs from "fs";
import path from "path";
import { fileURLToPath } from "url";
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const ROOT = path.resolve(__dirname, "..");
const PACKAGES_DIR = path.join(ROOT, "integrations");
const OUTPUT_PATH = path.join(
ROOT,
"shell-docs",
"src",
"data",
"setup-content.json",
);
interface SetupContentEntry {
framework: string;
concept: string;
source: string;
}
interface SetupContentBundle {
version: 1;
concepts: Record<string, SetupContentEntry>;
}
function stripFrontmatter(source: string): string {
const frontmatter = /^---\r?\n[\s\S]*?\r?\n---\r?\n?/.exec(source);
return frontmatter ? source.slice(frontmatter[0].length) : source;
}
function resolveWithinDir(baseDir: string, relative: string): string | null {
const base = path.resolve(baseDir);
const resolved = path.resolve(base, relative);
if (resolved !== base && !resolved.startsWith(base + path.sep)) return null;
return resolved;
}
const COMMENT_BY_EXT: Record<string, "py" | "slash"> = {
py: "py",
ts: "slash",
tsx: "slash",
js: "slash",
jsx: "slash",
java: "slash",
cs: "slash",
go: "slash",
kt: "slash",
rs: "slash",
};
const LANG_BY_EXT: Record<string, string> = {
py: "python",
ts: "typescript",
tsx: "typescript",
js: "javascript",
jsx: "javascript",
java: "java",
cs: "csharp",
go: "go",
kt: "kotlin",
rs: "rust",
};
function inferLanguage(filePath: string): string {
const ext = filePath.includes(".")
? filePath.slice(filePath.lastIndexOf(".") + 1).toLowerCase()
: "";
return LANG_BY_EXT[ext] ?? "plaintext";
}
function escapeRegex(value: string): string {
return value.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
}
function markersFor(ext: string): {
legacyStart: (region: string) => RegExp;
namedStart: (region: string) => RegExp;
legacyEnd: () => RegExp;
namedEnd: (region: string) => RegExp;
} | null {
const kind = COMMENT_BY_EXT[ext];
if (!kind) return null;
const prefix = kind === "py" ? "#" : "//";
return {
legacyStart: (region) => {
const escaped = escapeRegex(region);
return new RegExp(`^\\s*${prefix}\\s*region:\\s*${escaped}\\s*$`);
},
namedStart: (region) => {
const escaped = escapeRegex(region);
return new RegExp(`^\\s*${prefix}\\s*@region\\[${escaped}\\]\\s*$`);
},
legacyEnd: () => new RegExp(`^\\s*${prefix}\\s*endregion\\b`),
namedEnd: (region) => {
const escaped = escapeRegex(region);
return new RegExp(`^\\s*${prefix}\\s*@endregion\\[${escaped}\\]\\s*$`);
},
};
}
function extractRegion(
source: string,
region: string,
ext: string,
): string | null {
const markers = markersFor(ext);
if (!markers) return null;
const lines = source.split("\n");
const legacyStartRx = markers.legacyStart(region);
const namedStartRx = markers.namedStart(region);
const legacyEndRx = markers.legacyEnd();
const namedEndRx = markers.namedEnd(region);
const blocks: string[] = [];
let i = 0;
while (i < lines.length) {
const isNamedStart = namedStartRx.test(lines[i]);
const isLegacyStart = legacyStartRx.test(lines[i]);
if (!isNamedStart && !isLegacyStart) {
i++;
continue;
}
const startIdx = i;
const endRx = isNamedStart ? namedEndRx : legacyEndRx;
let endIdx = -1;
for (let j = i + 1; j < lines.length; j++) {
if (endRx.test(lines[j])) {
endIdx = j;
break;
}
}
if (endIdx === -1) {
throw new Error(
`[demo-code] unterminated region "${region}" starting at line ${
startIdx + 1
}`,
);
}
blocks.push(lines.slice(startIdx + 1, endIdx).join("\n"));
i = endIdx + 1;
}
if (blocks.length === 0) return null;
if (blocks.length > 1) {
throw new Error(
`[demo-code] duplicate region "${region}" appears ${blocks.length} times`,
);
}
return blocks[0];
}
function matchAttr(attrs: string, name: string): string | undefined {
const dq = new RegExp(`\\b${name}="([^"]*)"`).exec(attrs);
if (dq) return dq[1];
const sq = new RegExp(`\\b${name}='([^']*)'`).exec(attrs);
if (sq) return sq[1];
return undefined;
}
function formatFenceTitle(title: string): string {
return JSON.stringify(title);
}
const DEMO_CODE_TAG_RX = /<DemoCode\b((?:"[^"]*"|'[^']*'|[^'"<>])*)\/>/g;
function rewriteDemoCode(source: string, packageRoot: string): string {
return source.replace(DEMO_CODE_TAG_RX, (match, attrs: string) => {
const file = matchAttr(attrs, "file");
const region = matchAttr(attrs, "region");
if (!file || !region) {
throw new Error(
`[demo-code] DemoCode references must use static file and region props: ${match}`,
);
}
const resolved = resolveWithinDir(packageRoot, file);
if (!resolved || !fs.existsSync(resolved)) {
throw new Error(
`[demo-code] file not found ${file} in package root ${packageRoot}`,
);
}
const raw = fs.readFileSync(resolved, "utf-8");
const ext = file.includes(".")
? file.slice(file.lastIndexOf(".") + 1).toLowerCase()
: "";
const body = extractRegion(raw, region, ext);
if (body === null) {
throw new Error(`[demo-code] region not found ${region} in ${file}`);
}
const language = matchAttr(attrs, "language") ?? inferLanguage(file);
const title = matchAttr(attrs, "title") ?? path.basename(file);
return [
"",
`~~~~${language} title=${formatFenceTitle(title)}`,
body,
"~~~~",
"",
].join("\n");
});
}
function readSetupConcepts(): SetupContentBundle {
const bundle: SetupContentBundle = {
version: 1,
concepts: {},
};
const errors: string[] = [];
if (!fs.existsSync(PACKAGES_DIR)) {
throw new Error(`Integrations directory not found: ${PACKAGES_DIR}`);
}
const integrationDirs = fs
.readdirSync(PACKAGES_DIR, { withFileTypes: true })
.filter((entry) => entry.isDirectory())
.map((entry) => entry.name)
.sort();
for (const framework of integrationDirs) {
const packageRoot = path.join(PACKAGES_DIR, framework);
const setupDir = path.join(packageRoot, "docs", "setup");
if (!fs.existsSync(setupDir)) continue;
const conceptFiles = fs
.readdirSync(setupDir, { withFileTypes: true })
.filter((entry) => entry.isFile() && entry.name.endsWith(".mdx"))
.map((entry) => entry.name)
.sort();
for (const filename of conceptFiles) {
const concept = filename.slice(0, -".mdx".length);
const conceptPath = path.join(setupDir, filename);
const relativeConceptPath = path.relative(ROOT, conceptPath);
const raw = fs.readFileSync(conceptPath, "utf-8");
if (raw.trim().length === 0) continue;
try {
const source = rewriteDemoCode(stripFrontmatter(raw), packageRoot);
if (/<DemoCode\b/.test(source)) {
throw new Error("contains an unresolved <DemoCode> reference");
}
bundle.concepts[`${framework}::${concept}`] = {
framework,
concept,
source,
};
} catch (err) {
errors.push(`${relativeConceptPath}: ${(err as Error).message}`);
}
}
}
if (errors.length > 0) {
throw new Error(
`Failed to bundle setup content:\n${errors
.map((error) => ` - ${error}`)
.join("\n")}`,
);
}
return bundle;
}
function main(): void {
const bundle = readSetupConcepts();
fs.mkdirSync(path.dirname(OUTPUT_PATH), { recursive: true });
fs.writeFileSync(OUTPUT_PATH, `${JSON.stringify(bundle, null, 2)}\n`);
console.log(
`Wrote ${Object.keys(bundle.concepts).length} setup concepts to ${path.relative(
ROOT,
OUTPUT_PATH,
)}`,
);
}
main();