-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-node.js
58 lines (53 loc) · 1.62 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
const path = require(`path`)
const { createFilePath } = require(`gatsby-source-filesystem`)
const requiresTemplate = [`projects`]
const getContentType = node =>
node.fileAbsolutePath.match(/content(.*)/)[0].split(`/`)[1]
exports.onCreateNode = ({ node, getNode, actions }) => {
if (node.internal.type === "MarkdownRemark") {
const contentType = getContentType(node)
const path = `content/${contentType}/`
const { createNodeField } = actions
const slug = createFilePath({ node, getNode, basePath: path })
createNodeField({ node, name: `slug`, value: `/${contentType}${slug}` })
if (requiresTemplate.includes(contentType)) {
createNodeField({
node,
name: `templatePath`,
value: `./src/templates/${contentType}-post.js`,
})
}
}
}
exports.createPages = async ({ graphql, actions }) => {
// graphql function call returns a promise
const { createPage } = actions
const result = await graphql(`
query {
allMarkdownRemark {
edges {
node {
fields {
slug
templatePath
}
}
}
}
}
`)
result.data.allMarkdownRemark.edges.forEach(({ node }) => {
const contentType = node.fields.slug.split(`/`)[1]
if (requiresTemplate.includes(contentType)) {
createPage({
path: node.fields.slug,
component: path.resolve(node.fields.templatePath),
context: {
// Data passed to context is available in page queries as graphql variables
slug: node.fields.slug,
templatePath: node.fields.templatePath,
},
})
}
})
}