-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-node.js
47 lines (43 loc) · 1.16 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
/**
* Implement Gatsby's Node APIs in this file.
*
* See: https://www.gatsbyjs.org/docs/node-apis/
*/
// You can delete this file if you're not using it
const path = require("path");
const { createFilePath } = require("gatsby-source-filesystem");
exports.createPages = async ({ actions, graphql, reporter }) => {
const { createPage } = actions;
const res = await graphql(`
query Projects {
allMarkdownRemark(
filter: { frontmatter: { templateKey: { eq: "project-item" } } }
) {
edges {
node {
frontmatter {
slug
}
}
}
}
}
`);
if (res.errors) {
reporter.panicOnBuild("Error while running GraphQL query.");
return;
}
const projects = res.data.allMarkdownRemark.edges;
projects.forEach(({ node }) => {
const replace = `${node.frontmatter.slug}_(phone|macbook)`;
const regex = new RegExp(replace, "g");
createPage({
path: `/projects/${node.frontmatter.slug}`,
component: path.resolve("src/components/projectpage.js"),
context: {
slug: node.frontmatter.slug,
regex: regex.toString(),
},
});
});
};