-
Notifications
You must be signed in to change notification settings - Fork 10.3k
/
Copy pathgatsby-node.js
494 lines (435 loc) · 13.6 KB
/
gatsby-node.js
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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
const documentation = require(`documentation`)
const remark = require(`remark`)
const _ = require(`lodash`)
const Prism = require(`prismjs`)
const stringifyMarkdownAST = (node = ``) => {
if (_.isString(node)) {
return node
} else {
return remark().stringify(node)
}
}
const docId = (parentId, docsJson) => {
const lineNumber = docsJson.loc
? docsJson.loc.start.line
: docsJson.lineNumber
return `documentationJS ${parentId} path #${JSON.stringify(
docsJson.path
)} line ${lineNumber}`
}
const descriptionId = (parentId, name) =>
`${parentId}--DocumentationJSComponentDescription--${name}`
function prepareDescriptionNode(node, markdownStr, name, helpers) {
const { createNodeId, createContentDigest } = helpers
const descriptionNode = {
id: createNodeId(descriptionId(node.id, name)),
parent: node.id,
children: [],
internal: {
type: `DocumentationJSComponentDescription`,
mediaType: `text/markdown`,
content: markdownStr,
contentDigest: createContentDigest(markdownStr),
},
}
return descriptionNode
}
exports.createSchemaCustomization = ({ actions }) => {
const { createTypes } = actions
const typeDefs = /* GraphQL */ `
type DocumentationJs implements Node
@childOf(types: ["File", "DocumentationJs"], many: true) {
name: String
kind: String
memberof: String
scope: String
access: String
optional: Boolean
readonly: Boolean
abstract: Boolean
generator: Boolean
async: Boolean
override: Boolean
hideconstructor: Boolean
alias: String
copyright: String
author: String
license: String
since: String
lends: String
type: DoctrineType
default: JSON
description: DocumentationJSComponentDescription
@link(from: "description___NODE")
deprecated: DocumentationJSComponentDescription
@link(from: "deprecated___NODE")
augments: [DocumentationJs] @link(from: "augments___NODE")
examples: [DocumentationJsExample]
implements: [DocumentationJs] @link(from: "implements___NODE")
params: [DocumentationJs] @link(from: "params___NODE")
properties: [DocumentationJs] @link(from: "properties___NODE")
returns: [DocumentationJs] @link(from: "returns___NODE")
throws: [DocumentationJs] @link(from: "throws___NODE")
todos: [DocumentationJs] @link(from: "todos___NODE")
yields: [DocumentationJs] @link(from: "yields___NODE")
members: DocumentationJsMembers
codeLocation: DocumenationJSLocationRange
docsLocation: DocumenationJSLocationRange
}
type DocumentationJSComponentDescription implements Node
@mimeTypes(types: ["text/markdown"]) {
id: ID! # empty type
}
type DocumentationJSLocation {
line: Int
column: Int
}
type DocumenationJSLocationRange {
start: DocumentationJSLocation
end: DocumentationJSLocation
}
type DocumentationJsExample {
caption: String
description: String
highlighted: String
raw: String
}
type DocumentationJsMembers {
static: [DocumentationJs] @link(from: "static___NODE")
instance: [DocumentationJs] @link(from: "instance___NODE")
events: [DocumentationJs] @link(from: "events___NODE")
global: [DocumentationJs] @link(from: "global___NODE")
inner: [DocumentationJs] @link(from: "inner___NODE")
}
type DoctrineType {
type: String
name: String
elements: [JSON]
expression: JSON
applications: [JSON]
params: [JSON]
fields: [JSON]
result: JSON
typeDef: DocumentationJs @link(from: "typeDef___NODE")
}
`
createTypes(typeDefs)
}
exports.createResolvers = ({ createResolvers }) => {
createResolvers({
DocumentationJs: {
type: {
// resolve `typeDef___NODE` recursively
resolve: (source, _, context) => {
if (!source.type) {
return null
}
const fieldsToVisit = [`elements`, `expression`, `applications`]
const resolve = obj => {
if (!obj.typeDef___NODE) {
return obj
}
return {
...obj,
typeDef: context.nodeModel.getNodeById(
{ id: obj.typeDef___NODE, type: `DocumentationJs` },
{ path: context.path }
),
}
}
const visit = obj => {
if (!obj) {
return null
}
const ret = { ...obj }
fieldsToVisit.forEach(fieldName => {
const v = obj[fieldName]
if (!v) {
return
}
if (Array.isArray(v)) {
ret[fieldName] = v.map(t => visit(resolve(t)))
} else {
ret[fieldName] = visit(resolve(v))
}
})
return ret
}
return visit(resolve(source.type))
},
},
},
})
}
function shouldOnCreateNode({ node }) {
return (
node.internal.type === `File` &&
(node.internal.mediaType === `application/javascript` ||
node.extension === `jsx` ||
node.extension === `tsx` ||
node.extension === `ts`)
)
}
exports.shouldOnCreateNode = shouldOnCreateNode
/**
* Implement the onCreateNode API to create documentation.js nodes
* @param {Object} super this is a super param
*/
exports.onCreateNode = async ({ node, actions, ...helpers }) => {
const { createNodeId, createContentDigest } = helpers
const { createNode, createParentChildLink } = actions
let documentationJson
try {
documentationJson = await documentation.build(node.absolutePath, {
shallow: true,
})
} catch (e) {
// Ignore as there'll probably be other tooling already checking for errors
// and an error here kills Gatsby.
}
if (documentationJson && documentationJson.length > 0) {
const handledDocs = new WeakMap()
const typeDefs = new Map()
const getNodeIDForType = (typeName, parent) => {
if (typeDefs.has(typeName)) {
return typeDefs.get(typeName)
}
const index = documentationJson.findIndex(
docsJson =>
docsJson.name === typeName &&
[`interface`, `typedef`, `constant`].includes(docsJson.kind)
)
const isCycle = parent === documentationJson[index]
if (isCycle) {
helpers.reporter.warn(
`Unexpected cycle detected creating DocumentationJS nodes for file:\n\n\t${node.absolutePath}\n\nFor type: ${typeName}`
)
}
if (index !== -1 && !isCycle) {
return prepareNodeForDocs(documentationJson[index], {
commentNumber: index,
}).node.id
}
return null
}
const tryToAddTypeDef = (type, parent) => {
if (type.applications) {
type.applications.forEach(t => tryToAddTypeDef(t, parent))
}
if (type.expression) {
tryToAddTypeDef(type.expression, parent)
}
if (type.elements) {
type.elements.forEach(t => tryToAddTypeDef(t, parent))
}
if (type.type === `NameExpression` && type.name) {
type.typeDef___NODE = getNodeIDForType(type.name, parent)
}
}
/**
* Prepare Gatsby node from JsDoc object.
* - set description and deprecated fields as markdown
* - recursively process params, properties, returns
* - link types to type definitions
* - unwrap optional types to top level optional field
* @param {Object} docsJson JsDoc object. See https://documentation.js.org/html-example/index.json for example of JsDoc objects shape.
* @param {Object} args
* @param {Number} [args.commentNumber] Index of JsDoc in root of module
* @param {Number} args.level Nesting level
* @param {string} args.parent Id of parent node
*/
const prepareNodeForDocs = (
docsJson,
{ commentNumber = null, level = 0, parent = node.id } = {}
) => {
if (handledDocs.has(docsJson)) {
// this was already handled
return handledDocs.get(docsJson)
}
const docSkeletonNode = {
commentNumber,
level,
id: createNodeId(docId(parent, docsJson)),
parent,
children: [],
internal: {
type: `DocumentationJs`,
},
}
const children = []
let picked = _.pick(docsJson, [
`kind`,
`memberof`,
`name`,
`scope`,
`type`,
`default`,
`readonly`,
`access`,
`abstract`,
`generator`,
`async`,
`override`,
`hideconstructor`,
`alias`,
`copyright`,
`author`,
`license`,
`since`,
`lends`,
`examples`,
`tags`,
])
picked.optional = false
if (docsJson.loc) {
// loc is instance of SourceLocation class, and Gatsby doesn't support
// class instances at this moment when inferring schema. Serializing
// and deserializing converts class instance to plain object.
picked.docsLocation = JSON.parse(JSON.stringify(docsJson.loc))
}
if (docsJson.context && docsJson.context.loc) {
picked.codeLocation = JSON.parse(JSON.stringify(docsJson.context.loc))
}
if (picked.type) {
if (picked.type === `OptionalType` && docsJson.expression) {
picked = { ...picked, optional: true, ...docsJson.expression }
}
if (picked.type.type === `OptionalType` && picked.type.expression) {
picked.optional = true
picked.type = picked.type.expression
}
tryToAddTypeDef(picked.type, docsJson)
}
const mdFields = [`description`, `deprecated`]
mdFields.forEach(fieldName => {
if (docsJson[fieldName]) {
const childNode = prepareDescriptionNode(
docSkeletonNode,
stringifyMarkdownAST(docsJson[fieldName]),
`comment.${fieldName}`,
helpers
)
picked[`${fieldName}___NODE`] = childNode.id
children.push({
node: childNode,
})
}
})
const docsSubfields = [
`augments`,
`implements`,
`params`,
`properties`,
`returns`,
`throws`,
`todos`,
`yields`,
]
docsSubfields.forEach(fieldName => {
if (docsJson[fieldName] && docsJson[fieldName].length > 0) {
picked[`${fieldName}___NODE`] = docsJson[fieldName].map(
(docObj, fieldIndex) => {
// When documenting destructured parameters, the name
// is parent.child where we just want the child.
if (docObj.name && docObj.name.split(`.`).length > 1) {
docObj.name = docObj.name.split(`.`).slice(-1).join(`.`)
}
const adjustedObj = {
...docObj,
path: [...docsJson.path, { fieldName, fieldIndex }],
}
const nodeHierarchy = prepareNodeForDocs(adjustedObj, {
level: level + 1,
parent: docSkeletonNode.id,
})
children.push(nodeHierarchy)
return nodeHierarchy.node.id
}
)
}
})
if (_.isPlainObject(docsJson.members)) {
/*
docsJson.members = {
events: [],
global: [],
inner: [],
instance: [],
static: [],
}
each member type has array of jsdocs in same shape as top level jsdocs
so we use same transformation as top level ones
*/
picked.members = _.reduce(
docsJson.members,
(acc, membersOfType, key) => {
if (membersOfType.length > 0) {
acc[`${key}___NODE`] = membersOfType.map(member => {
const nodeHierarchy = prepareNodeForDocs(member, {
level: level + 1,
parent: docSkeletonNode.id,
})
children.push(nodeHierarchy)
return nodeHierarchy.node.id
})
}
return acc
},
{}
)
}
if (docsJson.examples) {
picked.examples = docsJson.examples.map(example => {
// Extract value from <caption/> element
const caption =
example?.caption?.children[0]?.children[0].value || null
return {
...example,
caption,
raw: example.description,
highlighted: Prism.highlight(
example.description,
Prism.languages.javascript
),
}
})
}
const docNode = {
...docSkeletonNode,
...picked,
}
docNode.internal.contentDigest = createContentDigest(docNode)
if (docNode.kind === `typedef`) {
typeDefs.set(docNode.name, docNode.id)
}
const nodeHierarchy = {
node: docNode,
children,
}
handledDocs.set(docsJson, nodeHierarchy)
return nodeHierarchy
}
const rootNodes = documentationJson.map((docJson, index) =>
prepareNodeForDocs(docJson, { commentNumber: index })
)
const createChildrenNodesRecursively = ({ node: parent, children }) => {
if (children) {
children.forEach(nodeHierarchy => {
createNode(nodeHierarchy.node)
createParentChildLink({
parent,
child: nodeHierarchy.node,
})
createChildrenNodesRecursively(nodeHierarchy)
})
}
}
createChildrenNodesRecursively({
node,
children: rootNodes,
})
return true
} else {
return null
}
}