-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-node.js
63 lines (52 loc) · 1.24 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
const path = require('path')
const componentWithMDXScope = require('gatsby-mdx/component-with-mdx-scope')
function getSlug(node) {
const parts = node.fileAbsolutePath.split('/')
return parts[parts.length - 1].split('.')[0]
}
exports.onCreateNode = ({ node, getNode, actions }) => {
const { createNodeField } = actions
if (node.internal.type === `Mdx`) {
const parent = getNode(node.parent)
createNodeField({
name: 'id',
node,
value: node.id,
})
createNodeField({
name: 'title',
node,
value: node.frontmatter.title,
})
createNodeField({
name: 'description',
node,
value: node.frontmatter.description || '',
})
createNodeField({
name: 'slug',
node,
value: node.frontmatter.slug || getSlug(node),
})
createNodeField({
name: 'date',
node,
value: node.frontmatter.date || '',
})
createNodeField({
name: 'banner',
node,
banner: node.frontmatter.banner,
})
createNodeField({
name: 'categories',
node,
value: node.frontmatter.categories || ['none'],
})
createNodeField({
name: 'keywords',
node,
value: node.frontmatter.keywords || [],
})
}
}