-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgatsby-node.js
More file actions
135 lines (121 loc) · 3.19 KB
/
gatsby-node.js
File metadata and controls
135 lines (121 loc) · 3.19 KB
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
125
126
127
128
129
130
131
132
133
134
135
/**
* Implement Gatsby's Node APIs in this file.
*
* See: https://www.gatsbyjs.org/docs/node-apis/
*/
const path = require(`path`)
exports.createPages = async ({ actions, graphql, reporter }) => {
const { createPage } = actions
const storiesQuery = await graphql(`
{
allMarkdownRemark(
filter: {
frontmatter: { published: { eq: true }, type: { eq: "story" } }
}
sort: { fields: [frontmatter___date], order: DESC }
) {
edges {
node {
frontmatter {
path
}
}
}
}
}
`)
const pageQuery = await graphql(`
{
allMarkdownRemark(filter: { frontmatter: { type: { eq: "page" } } }) {
edges {
node {
frontmatter {
path
}
}
}
}
}
`)
const featureQuery = await graphql(`
{
allMarkdownRemark(filter: { frontmatter: { type: { eq: "feature" } } }) {
edges {
node {
frontmatter {
path
}
}
}
}
}
`)
if (storiesQuery.errors) {
reporter.panicOnBuild(`Error while running stories GraphQL query.`)
return
}
if (pageQuery.errors) {
reporter.panicOnBuild(`Error while running pages GraphQL query.`)
return
}
if (featureQuery.errors) {
reporter.panicOnBuild(`Error while running pages GraphQL query.`)
return
}
// Create story list pages.
const stories = storiesQuery.data.allMarkdownRemark.edges
const storiesPerPage = 9
const storyPages = Math.ceil(stories.length / storiesPerPage)
Array.from({ length: storyPages }).forEach((_, i) => {
createPage({
path: i === 0 ? `/stories-of-impact` : `/stories-of-impact/${i + 1}`,
component: path.resolve("./src/templates/storyList.js"),
context: {
limit: storiesPerPage,
skip: i * storiesPerPage,
storyPages,
currentPage: i + 1,
},
})
})
// Create feature list pages.
const features = featureQuery.data.allMarkdownRemark.edges
const featuresPerPage = 9
const featurePages = Math.ceil(features.length / featuresPerPage)
Array.from({ length: featurePages }).forEach((_, i) => {
createPage({
path: i === 0 ? `/features` : `/features/${i + 1}`,
component: path.resolve("./src/templates/featureList.js"),
context: {
limit: featuresPerPage,
skip: i * featuresPerPage,
featurePages,
currentPage: i + 1,
},
})
})
// Story pages.
storiesQuery.data.allMarkdownRemark.edges.forEach(({ node }) => {
createPage({
path: node.frontmatter.path,
component: path.resolve(`src/templates/storyTemplate.js`),
context: {},
})
})
// Regular pages.
pageQuery.data.allMarkdownRemark.edges.forEach(({ node }) => {
createPage({
path: node.frontmatter.path,
component: path.resolve(`src/templates/pageTemplate.js`),
context: {},
})
})
// Feature pages.
featureQuery.data.allMarkdownRemark.edges.forEach(({ node }) => {
createPage({
path: node.frontmatter.path,
component: path.resolve(`src/templates/featureTemplate.js`),
context: {},
})
})
}