-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathdocTree.ts
406 lines (357 loc) · 10.9 KB
/
docTree.ts
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
import {isDeveloperDocs} from './isDeveloperDocs';
import {getDevDocsFrontMatter, getDocsFrontMatter} from './mdx';
import {platformsData} from './platformsData';
import {
FrontMatter,
Platform,
PlatformConfig,
PlatformGuide,
PlatformIntegration,
} from './types';
import {isVersioned, stripVersion, VERSION_INDICATOR} from './versioning';
export interface DocNode {
children: DocNode[];
frontmatter: FrontMatter & PlatformConfig & Pick<PlatformGuide, 'fallbackGuide'>;
missing: boolean;
path: string;
slug: string;
parent?: DocNode;
sourcePath?: string;
}
function slugWithoutIndex(slug: string): string[] {
const parts = slug.split('/');
if (parts[parts.length - 1] === 'index') {
parts.pop();
}
return parts;
}
let getDocsRootNodeCache: Promise<DocNode> | undefined;
export function getDocsRootNode(): Promise<DocNode> {
if (getDocsRootNodeCache) {
return getDocsRootNodeCache;
}
getDocsRootNodeCache = getDocsRootNodeUncached();
return getDocsRootNodeCache;
}
async function getDocsRootNodeUncached(): Promise<DocNode> {
return frontmatterToTree(
isDeveloperDocs ? getDevDocsFrontMatter() : await getDocsFrontMatter()
);
}
const sidebarOrderSorter = (a: FrontMatter, b: FrontMatter) => {
const partDiff = slugWithoutIndex(a.slug).length - slugWithoutIndex(b.slug).length;
if (partDiff !== 0) {
return partDiff;
}
const orderDiff = (a.sidebar_order || 99999) - (b.sidebar_order || 99999);
if (orderDiff !== 0) {
return orderDiff;
}
return (a.title || '').localeCompare(b.title || '');
};
function frontmatterToTree(frontmatter: FrontMatter[]): DocNode {
const sortedDocs = frontmatter.sort(sidebarOrderSorter);
const rootNode: DocNode = {
path: '/',
slug: '',
frontmatter: {
title: 'Home',
slug: 'home',
},
children: [],
missing: false,
sourcePath: isDeveloperDocs ? 'develop-docs/index.mdx' : '',
};
const slugMap: {[slug: string]: DocNode} = {};
sortedDocs.forEach(doc => {
const slugParts = slugWithoutIndex(doc.slug);
const slug = slugParts.join('/');
if (slugParts.length === 0) {
rootNode.frontmatter = doc;
} else if (slugParts.length === 1) {
const node: DocNode = {
path: slug,
slug,
frontmatter: doc,
parent: rootNode,
children: [],
missing: false,
sourcePath: doc.sourcePath,
};
rootNode.children.push(node);
slugMap[slug] = node;
} else {
const parentSlug = slugParts.slice(0, slugParts.length - 1).join('/');
let parent: DocNode | undefined = slugMap[parentSlug];
if (!parent) {
const grandparentSlug = slugParts.slice(0, slugParts.length - 2).join('/');
const grandparent = slugMap[grandparentSlug];
if (!grandparent) {
throw new Error('missing parent and grandparent: ' + parentSlug);
}
parent = {
path: parentSlug,
slug: slugParts[slugParts.length - 2],
frontmatter: {
slug: slugParts[slugParts.length - 2],
// not ideal
title: '',
},
parent: grandparent,
children: [],
missing: true,
};
grandparent.children.push(parent);
slugMap[parentSlug] = parent;
}
const node = {
path: slug,
slug: slugParts[slugParts.length - 1],
frontmatter: doc,
parent,
children: [],
missing: false,
sourcePath: doc.sourcePath,
};
parent.children.push(node);
slugMap[slug] = node;
}
});
return rootNode;
}
export function nodeForPath(node: DocNode, path: string | string[]): DocNode | undefined {
const stringPath = typeof path === 'string' ? path : path.join('/');
const parts = slugWithoutIndex(stringPath);
for (let i = 0; i < parts.length; i++) {
const maybeChild = node.children.find(child => child.slug === parts[i]);
if (maybeChild) {
node = maybeChild;
} else {
return undefined;
}
}
return node;
}
/**
* Returns the next node in the tree, which is either the first child,
* the next sibling, or the next sibling of a parent node.
*
* @param node The current DocNode
* @returns The next DocNode in the tree, or undefined if there is no next node
*/
export const getNextNode = (node: DocNode): DocNode | undefined => {
const children = node.children.filter(filterVisibleSiblings).sort(sortBySidebarOrder);
// Check for children first
if (
children.length > 0 &&
!isRootPlatformPath(children[0].path) &&
!isRootGuidePath(children[0].path)
) {
return children[0];
}
// If no children, look for siblings or parent siblings
let currentNode: DocNode | undefined = node;
while (currentNode?.parent) {
const nextSibling = getNextSiblingNode(currentNode);
if (nextSibling) {
if (isRootPlatformPath(nextSibling.path) || isRootGuidePath(nextSibling.path)) {
return undefined;
}
return nextSibling;
}
currentNode = currentNode.parent;
}
// If we've reached this point, there are no more nodes to traverse
return undefined;
};
/**
* Returns the previous node in the tree, which is either the last child of the parent,
* the previous sibling, or the previous sibling of a parent node.
*/
export const getPreviousNode = (node: DocNode): DocNode | undefined | 'root' => {
// in this special case, calculating the root node is unnecessary so we return a string instead
if (isRootPlatformPath(node.path) || isRootGuidePath(node.path)) {
return 'root';
}
if (node.path === 'getting-started' && isDeveloperDocs) {
return undefined;
}
const previousSibling = getPreviousSiblingNode(node);
if (previousSibling) {
if (previousSibling.path === 'platforms') {
return undefined;
}
return previousSibling;
}
return node.parent;
};
const getNextSiblingNode = (node: DocNode): DocNode | undefined => {
if (!node.parent) {
return undefined;
}
const siblings = node.parent.children
.sort(sortBySidebarOrder)
.filter(filterVisibleSiblings);
const index = siblings.indexOf(node);
if (index < siblings.length - 1) {
return siblings[index + 1];
}
return undefined;
};
const getPreviousSiblingNode = (node: DocNode): DocNode | undefined => {
if (!node.parent) {
return undefined;
}
const siblings = node.parent.children
.sort(sortBySidebarOrder)
.filter(filterVisibleSiblings);
const index = siblings.indexOf(node);
if (index > 0) {
return siblings[index - 1];
}
return undefined;
};
const sortBySidebarOrder = (a: DocNode, b: DocNode) =>
(a.frontmatter.sidebar_order ?? 10) - (b.frontmatter.sidebar_order ?? 10);
const filterVisibleSiblings = (s: DocNode) =>
(s.frontmatter.sidebar_title || s.frontmatter.title) &&
!s.frontmatter.sidebar_hidden &&
!s.frontmatter.draft &&
s.path;
function nodeToPlatform(n: DocNode): Platform {
const platformData = platformsData()[n.slug];
const caseStyle = platformData?.case_style || n.frontmatter.caseStyle;
const guides = extractGuides(n);
const integrations = extractIntegrations(n);
return {
key: n.slug,
name: n.slug,
type: 'platform',
url: '/' + n.path + '/',
title: n.frontmatter.platformTitle ?? n.frontmatter.title,
caseStyle,
sdk: n.frontmatter.sdk,
fallbackPlatform: n.frontmatter.fallbackPlatform,
language: n.frontmatter.language,
categories: n.frontmatter.categories,
keywords: n.frontmatter.keywords,
guides,
integrations,
};
}
function nodeToGuide(platform: string, n: DocNode): PlatformGuide {
const key = `${platform}.${n.slug}`;
return {
key,
name: n.slug,
type: 'guide',
url: '/' + n.path + '/',
title: n.frontmatter.title,
platform,
sdk: n.frontmatter.sdk || `sentry.${key}`,
categories: n.frontmatter.categories,
fallbackGuide: n.frontmatter.fallbackGuide,
};
}
export const isRootPlatformPath = (path: string) => {
return path.startsWith('platforms/') && path.split('/').length === 2;
};
export const isRootGuidePath = (path: string) => {
return (
path.startsWith('platforms/') &&
path.split('/').length === 4 &&
path.split('/')[2].startsWith('guides')
);
};
export function getPlatform(rootNode: DocNode, name: string): Platform | undefined {
const platformNode = nodeForPath(rootNode, ['platforms', name]);
if (!platformNode) {
return undefined;
}
return nodeToPlatform(platformNode);
}
export function getCurrentPlatform(
rootNode: DocNode,
path: string[]
): Platform | undefined {
if (path.length < 2 || path[0] !== 'platforms') {
return undefined;
}
return getPlatform(rootNode, path[1].split(VERSION_INDICATOR)[0]);
}
export function getCurrentGuide(
rootNode: DocNode,
path: string[]
): PlatformGuide | undefined {
if (path.length >= 4 && path[2] === 'guides') {
return getGuide(rootNode, path[1], path[3].split(VERSION_INDICATOR)[0]);
}
return undefined;
}
export function getCurrentPlatformOrGuide(
rootNode: DocNode,
path: string[]
): Platform | PlatformGuide | undefined {
if (path.length < 2 || path[0] !== 'platforms') {
return undefined;
}
if (path.length >= 4 && path[2] === 'guides') {
return getGuide(rootNode, path[1], stripVersion(path[3]));
}
return getPlatform(rootNode, stripVersion(path[1]));
}
export function getGuide(
rootNode: DocNode,
platform: string,
guide: string
): PlatformGuide | undefined {
const guideNode = nodeForPath(rootNode, ['platforms', platform, 'guides', guide]);
if (!guideNode) {
return undefined;
}
return nodeToGuide(platform, guideNode);
}
export function extractPlatforms(rootNode: DocNode): Platform[] {
const platformsNode = nodeForPath(rootNode, 'platforms');
if (!platformsNode) {
return [];
}
return platformsNode.children
.filter(({path}) => !isVersioned(path))
.map(nodeToPlatform);
}
function extractGuides(platformNode: DocNode): PlatformGuide[] {
const guidesNode = nodeForPath(platformNode, 'guides');
if (!guidesNode) {
return [];
}
// If a `platformTitle` is defined, we add a virtual guide
const defaultGuide = platformNode.frontmatter.platformTitle
? {
...nodeToGuide(platformNode.slug, platformNode),
key: platformNode.slug,
}
: undefined;
const childGuides = guidesNode.children
.filter(({path}) => !isVersioned(path))
.map(n => nodeToGuide(platformNode.slug, n));
return defaultGuide ? [defaultGuide, ...childGuides] : childGuides;
}
const extractIntegrations = (p: DocNode): PlatformIntegration[] => {
if (!p.frontmatter.showIntegrationsInSearch) {
return [];
}
const integrations = nodeForPath(p, 'integrations');
return (
integrations?.children.map(integ => {
return {
key: integ.slug,
name: integ.frontmatter.title,
icon: p.slug + '.' + integ.slug,
url: ['', 'platforms', p.slug, 'integrations', integ.slug].join('/'),
platform: p.slug,
type: 'integration',
};
}) ?? []
);
};