-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-node.js
124 lines (108 loc) · 3.07 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
const path = require(`path`)
const { createFilePath } = require(`gatsby-source-filesystem`)
const blogRegexp = "/(blog)/.*\\\\.mdx?$/"
const recipesRegexp = "/(recipes)/.*\\\\.md$/"
const adventRegexp = "/(advent-2020)/.*\\\\.md$/"
const bookRegexp = "/(books)/.*\\\\.md$/"
function addContextToPage(page, index, pages) {
const previous = index === pages.length - 1 ? null : pages[index + 1].node
const next = index === 0 ? null : pages[index - 1].node
const {
node: {
fields: { slug },
},
} = page
return {
...page,
context: {
slug,
previous,
next,
},
}
}
function createContentTypePages(createPage, pages, component) {
pages.forEach(page => {
const {
context,
node: {
fields: { slug },
},
} = page
return createPage({
path: slug,
component,
context: {
slug,
...context,
},
})
})
}
exports.createPages = async ({ graphql, actions }) => {
const { createPage } = actions
const blogPost = path.resolve(`./src/templates/blog-post.js`)
const recipePost = path.resolve(`./src/templates/recipe-post.js`)
const bookNotesTemplate = path.resolve("./src/templates/book-notes.js")
const adventTemplate = path.resolve("./src/templates/advent-template.js")
// this is getting tedious, fix it some time
const blogResult = await graphql(createPageQueryString(blogRegexp))
const recipeResult = await graphql(createPageQueryString(recipesRegexp))
const adventResult = await graphql(createPageQueryString(adventRegexp))
const bookResult = await graphql(createPageQueryString(bookRegexp))
const results = [blogResult, recipeResult, adventResult, bookResult]
results.forEach(res => {
if (res.errors) {
throw res.errors
}
})
// Create blog posts pages.
const posts = blogResult.data.allMdx.edges
createContentTypePages(createPage, posts.map(addContextToPage), blogPost)
const recipes = recipeResult.data.allMdx.edges
createContentTypePages(createPage, recipes.map(addContextToPage), recipePost)
const adventPosts = adventResult.data.allMdx.edges
createContentTypePages(
createPage,
adventPosts.map(addContextToPage),
adventTemplate
)
const books = bookResult.data.allMdx.edges
createContentTypePages(createPage, books, bookNotesTemplate)
}
exports.onCreateNode = ({ node, actions, getNode }) => {
const { createNodeField } = actions
if (node.internal.type === `Mdx`) {
let value = createFilePath({ node, getNode })
if (value.startsWith("/blog")) {
value = value.replace("/blog", "/posts")
}
createNodeField({
name: `slug`,
node,
value,
})
}
}
function createPageQueryString(regexp) {
return `
{
allMdx(
sort: { fields: [frontmatter___date], order: DESC }
filter:{fileAbsolutePath: {regex: "${regexp}"}}
limit: 1000
) {
edges {
node {
fields {
slug
}
frontmatter {
title
}
}
}
}
}
`
}