-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathsidebarConfig.ts
More file actions
350 lines (331 loc) · 12.6 KB
/
Copy pathsidebarConfig.ts
File metadata and controls
350 lines (331 loc) · 12.6 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
// Sidebar configuration for each main navigation section
// Maps navbar routes to their specific sidebar items
export type SidebarItem = {
label: string;
slug?: string;
items?: SidebarItem[];
collapsed?: boolean;
};
export type SidebarSection = {
label: string;
items: SidebarItem[];
};
export type Item = {
label: string;
href?: string;
items?: Item[];
};
// Define which URL paths belong to which sidebar section
export const sidebarSections: Record<string, SidebarSection[]> = {
// Learning Course section
'/learning-course': [
{
label: 'Learning Course',
items: [
{ label: 'Overview', slug: 'learning-course' },
{
label: 'Website Feature Guide',
slug: 'learning-course/getting-started/website-feature-guide',
},
{
label: 'Course Setup',
collapsed: true,
items: [
{
label: 'Required Tools',
slug: 'learning-course/getting-started/required-tools',
},
{
label: 'VS Code Overview',
slug: 'learning-course/getting-started/vscode-overview',
},
{
label: 'Forking and Cloning',
slug: 'learning-course/getting-started/forking-and-cloning',
},
],
},
{
label: 'Stage 0',
collapsed: true,
items: [
{
label: 'Stage 0 Overview',
slug: 'learning-course/stage0/stage-overview',
},
{
label: 'Java Fundamentals',
slug: 'learning-course/stage0/java-fundamentals',
},
{
label: 'Operators',
slug: 'learning-course/stage0/operators',
},
{
label: 'Conditionals',
slug: 'learning-course/stage0/conditionals',
},
// {
// label: 'Loops',
// slug: 'learning-course/stage0/loops',
// },
{
label: 'Classes, Fields, and Methods',
slug: 'learning-course/stage0/classes-methods',
},
// {
// label: 'Methods',
// slug: 'learning-course/stage0/methods',
// },
],
},
{
label: 'Stage 1',
collapsed: true,
items: [
{
label: 'Stage 1 Overview',
slug: 'learning-course/stage1/stage-overview',
},
{
label: 'Stage 1A: Kitbot Intro',
collapsed: true,
items: [
{
label: 'Stage 1A Overview',
slug: 'learning-course/stage1/stage1a/stage-overview',
},
{
label: 'Kitbot Drivetrain',
slug: 'learning-course/stage1/stage1a/kitbot-drivetrain',
},
{
label: 'Drivetrain Simulation',
slug: 'learning-course/stage1/stage1a/drivetrain-sim',
},
// {
// label: 'TBD',
// slug: 'stage-1a-commands/the-command-body',
// },
// {
// label: 'TBD',
// slug: 'stage-1a-commands/commands-and-mechanisms',
// },
],
},
{
label: 'Stage 1B: Commands',
collapsed: true,
items: [
{
label: 'Stage 1B Overview',
slug: 'learning-course/stage1/stage1b/stage-overview',
},
{
label: 'The Concepts',
slug: 'learning-course/stage1/stage1b/command-based-overview',
},
{
label: 'The Body of a Command',
slug: 'learning-course/stage1/stage1b/the-command-body',
},
{
label: 'Commands & Mechanisms, Pt. 1',
slug: 'learning-course/stage1/stage1b/commands-and-mechanisms',
},
{
label: 'Triggers and Scheduling',
slug: 'learning-course/stage1/stage1b/triggers',
},
{
label: 'Commands & Mechanisms, Pt. 2',
slug: 'learning-course/stage1/stage1b/commands-and-mechanisms-pt2',
},
{
label: 'Bonus: Spot the Error',
slug: 'learning-course/stage1/stage1b/spot-the-error',
},
{
label: 'Exercise - Kitbot Rewrite, Pt. 1',
slug: 'learning-course/stage1/stage1b/command-based-kitbot',
},
{
label: 'Suppliers in Command-Based',
slug: 'learning-course/stage1/stage1b/suppliers-in-command-based',
},
{
label: 'Exercise - Kitbot Rewrite, Pt. 2',
slug: 'learning-course/stage1/stage1b/command-based-kitbot-pt2',
},
{
label: 'Bonus: Spot the Error, Pt 2',
slug: 'learning-course/stage1/stage1b/spot-the-error-pt2',
},
],
},
],
},
],
},
],
// Educator's Guide section
'/educators-guide': [
{
label: "Educator's Guide",
items: [
{ label: 'Introduction', slug: 'educators-guide/introduction' },
{
label: 'The Stages',
slug: 'educators-guide/introduction/the-stages',
},
{
label: 'Preparing Yourself',
slug: 'educators-guide/introduction/preparation',
},
{ label: 'Stage 0', slug: 'educators-guide/stage0' },
{
label: 'Stage 1',
collapsed: true,
items: [
{ label: 'Overview', slug: 'educators-guide/stage1' },
{
label: 'Stage 1A',
slug: 'educators-guide/stage1/stage1a',
},
{
label: 'Stage 1B',
slug: 'educators-guide/stage1/stage1b',
},
],
},
{ label: 'Stage 2', slug: 'educators-guide/stage2' },
],
},
],
// Best Practices section
'/best-practices': [
{
label: 'Best Practices',
items: [
{
label: 'Overview',
slug: 'best-practices/overview',
},
{
label: 'Git Usage',
slug: 'best-practices/git-usage',
},
{
label: 'GitHub Usage',
slug: 'best-practices/github-usage',
},
{
label: 'Code Formatter',
slug: 'best-practices/code-formatter',
},
{
label: 'CI Checks',
slug: 'best-practices/ci-checks',
},
],
},
],
// Other Resources section (maps to /resources in content)
'/other-resources': [
{
label: 'Resources',
items: [
{ label: 'Overview', slug: 'resources' },
{ label: 'Glossary', slug: 'resources/glossary' },
{ label: 'Documentation', slug: 'resources/docs' },
],
},
],
// Contribution section
'/contribution': [
{
label: 'Contribution',
items: [
{
label: 'Methods of Contributing',
slug: 'contribution/methodsofcontributing',
},
{ label: 'Style Guide', slug: 'contribution/styleguide' },
{ label: 'Contributors', slug: 'contribution/contributors' },
{ label: 'Roadmap', slug: 'contribution/roadmap' },
],
},
],
};
/**
* Gets the sidebar configuration for a given URL path
* Matches the most specific path prefix
*/
export function getSidebarForPath(pathname: string): SidebarSection[] {
// Normalize pathname
const normalizedPath = pathname.endsWith('/')
? pathname.slice(0, -1)
: pathname;
// Try to find exact match first
if (sidebarSections[normalizedPath]) {
return sidebarSections[normalizedPath];
}
// Find the longest matching prefix
let bestMatch = '';
for (const key of Object.keys(sidebarSections)) {
if (
key !== '/' &&
normalizedPath.startsWith(key) &&
key.length > bestMatch.length
) {
bestMatch = key;
}
}
return sidebarSections[bestMatch || '/'] ?? sidebarSections['/'] ?? [];
}
/**
* Flattens sidebar items into a linear list of links for prev/next navigation
*/
function flattenSidebarItems(
items: SidebarItem[],
): { label: string; href: string }[] {
const result: { label: string; href: string }[] = [];
for (const item of items) {
if (item.slug) {
result.push({ label: item.label, href: '/' + item.slug + '/' });
}
if (item.items) {
result.push(...flattenSidebarItems(item.items));
}
}
return result;
}
/**
* Gets prev/next navigation links for a given path
*/
export function getPrevNextLinks(pathname: string): {
prev: { label: string; href: string } | null;
next: { label: string; href: string } | null;
} {
const sections = getSidebarForPath(pathname);
// Flatten all sections into a single list
const allLinks: { label: string; href: string }[] = [];
for (const section of sections) {
allLinks.push(...flattenSidebarItems(section.items));
}
// Normalize the current path
const normalizedPath = pathname.endsWith('/') ? pathname : pathname + '/';
// Find current page index
const currentIndex = allLinks.findIndex(
(link) => link.href === normalizedPath,
);
if (currentIndex === -1) {
return { prev: null, next: null };
}
const prev = allLinks.at(currentIndex - 1) ?? null;
const next = allLinks.at(currentIndex + 1) ?? null;
return {
prev,
next,
};
}