-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathdocTree.ts
230 lines (206 loc) · 6 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
import {getDocsFrontMatter} from 'sentry-docs/mdx';
import {platformsData} from './platformsData';
import {FrontMatter, Platform, PlatformConfig, PlatformGuide} from './types';
export interface DocNode {
children: DocNode[];
frontmatter: FrontMatter & PlatformConfig;
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> | undefined;
export function getDocsRootNode(): Promise<DocNode | undefined> {
if (getDocsRootNodeCache) {
return getDocsRootNodeCache;
}
getDocsRootNodeCache = getDocsRootNodeUncached();
return getDocsRootNodeCache;
}
async function getDocsRootNodeUncached(): Promise<DocNode | undefined> {
return frontmatterToTree(await getDocsFrontMatter());
}
function frontmatterToTree(frontmatter: FrontMatter[]): DocNode | undefined {
if (frontmatter.length === 0) {
return undefined;
}
const sortedDocs = frontmatter.sort((a, b) => {
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 || '');
});
const rootNode: DocNode = {
path: '/',
slug: '',
frontmatter: {
title: 'Home',
slug: 'home',
},
children: [],
missing: false,
sourcePath: 'src/components/home.tsx',
};
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;
}
function nodeToPlatform(n: DocNode): Platform {
const platformData = platformsData()[n.slug];
const caseStyle = platformData?.case_style || n.frontmatter.caseStyle;
return {
guides: extractGuides(n),
key: n.slug,
name: n.slug,
type: 'platform',
url: '/' + n.path + '/',
title: n.frontmatter.title,
caseStyle,
sdk: n.frontmatter.sdk,
fallbackPlatform: n.frontmatter.fallbackPlatform,
};
}
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}`,
};
}
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]);
}
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], path[3]);
}
return getPlatform(rootNode, 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.map(nodeToPlatform);
}
function extractGuides(platformNode: DocNode): PlatformGuide[] {
const guidesNode = nodeForPath(platformNode, 'guides');
if (!guidesNode) {
return [];
}
return guidesNode.children.map(n => nodeToGuide(platformNode.slug, n));
}