forked from reactjs/react.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathllms.txt.tsx
More file actions
258 lines (222 loc) · 6.39 KB
/
llms.txt.tsx
File metadata and controls
258 lines (222 loc) · 6.39 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
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import type {GetServerSideProps} from 'next';
import {siteConfig} from '../siteConfig';
import sidebarLearn from '../sidebarLearn.json';
import sidebarReference from '../sidebarReference.json';
import type {RouteItem, Sidebar} from '../utils/docs';
interface Page {
title: string;
url: string;
}
interface SubGroup {
heading: string;
pages: Page[];
}
interface Section {
heading: string | null;
pages: Page[];
subGroups: SubGroup[];
}
// Clean up section header names (remove version placeholders)
function cleanSectionHeader(header: string): string {
return header
.replace(/@\{\{version\}\}/g, '')
.replace(/-/g, ' ')
.split(' ')
.map((word) => word.charAt(0).toUpperCase() + word.slice(1))
.join(' ')
.trim();
}
// Extract routes for sidebars that use hasSectionHeader to define major sections
// (like the API Reference sidebar)
function extractSectionedRoutes(
routes: RouteItem[],
baseUrl: string
): Section[] {
const sections: Section[] = [];
let currentSection: Section | null = null;
for (const route of routes) {
// Skip external links
if (route.path?.startsWith('http')) {
continue;
}
// Start a new section when we hit a section header
if (route.hasSectionHeader && route.sectionHeader) {
if (currentSection) {
sections.push(currentSection);
}
currentSection = {
heading: cleanSectionHeader(route.sectionHeader),
pages: [],
subGroups: [],
};
continue;
}
// If no section started yet, skip
if (!currentSection) {
continue;
}
// Route with children - create a sub-group
if (route.title && route.routes && route.routes.length > 0) {
const subGroup: SubGroup = {
heading: route.title,
pages: [],
};
// Include parent page if it has a path
if (route.path) {
subGroup.pages.push({
title: route.title,
url: `${baseUrl}${route.path}.md`,
});
}
// Add child pages
for (const child of route.routes) {
if (child.title && child.path && !child.path.startsWith('http')) {
subGroup.pages.push({
title: child.title,
url: `${baseUrl}${child.path}.md`,
});
}
}
if (subGroup.pages.length > 0) {
currentSection.subGroups.push(subGroup);
}
}
// Single page without children
else if (route.title && route.path) {
currentSection.pages.push({
title: route.title,
url: `${baseUrl}${route.path}.md`,
});
}
}
// Don't forget the last section
if (currentSection) {
sections.push(currentSection);
}
return sections;
}
// Extract routes for sidebars that use routes with children as the primary grouping
// (like the Learn sidebar)
function extractGroupedRoutes(
routes: RouteItem[],
baseUrl: string
): SubGroup[] {
const groups: SubGroup[] = [];
for (const route of routes) {
// Skip section headers
if (route.hasSectionHeader) {
continue;
}
// Skip external links
if (route.path?.startsWith('http')) {
continue;
}
// Route with children - create a group
if (route.title && route.routes && route.routes.length > 0) {
const pages: Page[] = [];
// Include parent page if it has a path
if (route.path) {
pages.push({
title: route.title,
url: `${baseUrl}${route.path}.md`,
});
}
// Add child pages
for (const child of route.routes) {
if (child.title && child.path && !child.path.startsWith('http')) {
pages.push({
title: child.title,
url: `${baseUrl}${child.path}.md`,
});
}
}
if (pages.length > 0) {
groups.push({
heading: route.title,
pages,
});
}
}
// Single page without children - group under its own heading
else if (route.title && route.path) {
groups.push({
heading: route.title,
pages: [
{
title: route.title,
url: `${baseUrl}${route.path}.md`,
},
],
});
}
}
return groups;
}
// Check if sidebar uses section headers as primary grouping
function usesSectionHeaders(routes: RouteItem[]): boolean {
return routes.some((r) => r.hasSectionHeader && r.sectionHeader);
}
export const getServerSideProps: GetServerSideProps = async ({res}) => {
const subdomain =
siteConfig.languageCode === 'en' ? '' : siteConfig.languageCode + '.';
const baseUrl = 'https://' + subdomain + 'react.dev';
const lines = [
'# React Documentation',
'',
'> The library for web and native user interfaces.',
];
const sidebars: Sidebar[] = [
sidebarLearn as Sidebar,
sidebarReference as Sidebar,
];
for (const sidebar of sidebars) {
lines.push('');
lines.push(`## ${sidebar.title}`);
if (usesSectionHeaders(sidebar.routes)) {
// API Reference style: section headers define major groups
const sections = extractSectionedRoutes(sidebar.routes, baseUrl);
for (const section of sections) {
if (section.heading) {
lines.push('');
lines.push(`### ${section.heading}`);
}
// Output pages directly under section
for (const page of section.pages) {
lines.push(`- [${page.title}](${page.url})`);
}
// Output sub-groups with #### headings
for (const subGroup of section.subGroups) {
lines.push('');
lines.push(`#### ${subGroup.heading}`);
for (const page of subGroup.pages) {
lines.push(`- [${page.title}](${page.url})`);
}
}
}
} else {
// Learn style: routes with children define groups
const groups = extractGroupedRoutes(sidebar.routes, baseUrl);
for (const group of groups) {
lines.push('');
lines.push(`### ${group.heading}`);
for (const page of group.pages) {
lines.push(`- [${page.title}](${page.url})`);
}
}
}
}
const content = lines.join('\n');
res.setHeader('Content-Type', 'text/plain; charset=utf-8');
res.write(content);
res.end();
return {props: {}};
};
export default function LlmsTxt() {
return null;
}