-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-node.js
53 lines (49 loc) · 1.1 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
const {
createFilePath,
} = require(`@cs125/gatsby-source-filesystem-frontmatter`)
const path = require(`path`)
const slash = require(`slash`)
exports.createPages = ({ graphql, actions }) => {
const { createPage } = actions
return graphql(
`
{
allAsciidoc {
edges {
node {
id
fields {
slug
}
}
}
}
}
`
).then(result => {
if (result.errors) {
throw result.errors
}
const articleTemplate = path.resolve(`./src/templates/asciidoc.js`)
result.data.allAsciidoc.edges.forEach(edge => {
createPage({
path: edge.node.fields.slug,
component: slash(articleTemplate),
context: {
id: edge.node.id,
},
})
})
})
}
exports.onCreateNode = async ({ node, actions, getNode, loadNodeContent }) => {
const { createNodeField } = actions
if (node.internal.type === `Asciidoc`) {
const value = createFilePath({ node, getNode })
createNodeField({
name: `slug`,
node,
value,
})
}
}