-
Notifications
You must be signed in to change notification settings - Fork 9
/
gatsby-node.js
80 lines (73 loc) · 2.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
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
/*eslint-env node */
const _ = require(`lodash`)
const Promise = require(`bluebird`)
const path = require(`path`)
const { createFilePath } = require(`gatsby-source-filesystem`)
exports.createPages = ({ graphql, actions }) => {
const { createPage } = actions
return new Promise((resolve, reject) => {
const blogPost = path.resolve(`./src/components/blog-post/index.js`)
resolve(
graphql(
`
{
allMarkdownRemark(
limit: 1000
filter: { frontmatter: { draft: { ne: true } } }
) {
edges {
node {
fields {
slug
}
}
}
}
}
`
).then(result => {
if (result.errors) {
// console.log(result.errors)
reject(result.errors)
}
// Create blog posts pages.
_.each(result.data.allMarkdownRemark.edges, edge => {
createPage({
path: edge.node.fields.slug,
component: blogPost,
context: {
slug: edge.node.fields.slug,
},
})
})
})
)
})
}
exports.onCreateNode = ({ node, actions, getNode }) => {
const { createNodeField } = actions
if (node.internal.type === `MarkdownRemark`) {
let slug = ``
if (node.frontmatter && node.frontmatter.slug) slug = node.frontmatter.slug
else {
slug = createFilePath({ node, getNode })
// return only the first folder/file, from first slash to second slash (including)
slug = /^\/[\s\S]*?\//.exec(slug)[0]
}
createNodeField({
node,
name: `slug`,
value: slug,
})
}
}
exports.onCreatePage = ({ page, actions }) => {
const { createPage } = actions
// page.matchPath is a special key that's used for matching pages
// only on the client.
// we use it to make the categories page work
if (page.path.match(/^\/categories/)) {
page.matchPath = `/categories/*`
createPage(page)
}
}