-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-node.js
99 lines (88 loc) · 2.63 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
/**
* Implement Gatsby's Node APIs in this file.
*
* See: https://www.gatsbyjs.com/docs/reference/config-files/gatsby-node/
*/
/**
* @type {import('gatsby').GatsbyNode['createPages']}
*/
const path = require("path");
const { createFilePath } = require("gatsby-source-filesystem");
exports.createPages = async ({ actions, graphql, reporter }) => {
const { createPage } = actions;
const results = await graphql(`
query {
allMarkdownRemark(limit: 1000) {
edges {
node {
id
fields {
slug
}
frontmatter {
templateKey
}
}
}
}
}
`)
if (results.errors) {
reporter.panicOnBuild(`Error while running GraphQL query. ${results.errors}`)
return
}
// Filter out books, we don't make pages for those
// Also the home-page, or index.js. It just has pieces of content,
// not a generated page.
// FULCRUMOPS-290 also community is different, not a generated "page" but more like index.js
// mostly just because of historical reasons
pages = results.data.allMarkdownRemark.edges.filter(edge => {
if (edge.node.frontmatter.templateKey === "book" ||
edge.node.frontmatter.templateKey === "journal" ||
edge.node.frontmatter.templateKey === "home-page" ||
edge.node.frontmatter.templateKey === "blog-page") {
return false
} else {
return edge
}
})
pages.forEach(edge => {
const pathName = edge.node.frontmatter.path || edge.node.fields.slug;
const component = path.resolve(`src/templates/${String(edge.node.frontmatter.templateKey)}.js`);
const id = edge.node.id
createPage({
path: pathName,
component,
context: {
id: id,
},
})
})
}
//const { fmImagesToRelative } = require('gatsby-remark-relative-images');
exports.onCreateNode = ({ node, actions, getNode }) => {
//fmImagesToRelative(node);
const { createNodeField } = actions;
if (node.internal.type === `MarkdownRemark`) {
// HELIO-3193
// frontmatter cover paths need to be corrected
if (node.frontmatter.cover) {
console.log("OLDPATH", node.frontmatter.cover)
console.log("FIXPATH", node.frontmatter.cover.replace(/^.*assets/, "/assets"))
createNodeField({
node,
name: `cover`,
//value: path.join("/", node.frontmatter.cover)
//value: node.frontmatter.cover
value: node.frontmatter.cover.replace(/^.*assets/, "/assets")
})
}
// end HELIO-3193
const value = createFilePath({ node, getNode });
createNodeField({
name: `slug`,
node,
value,
});
}
}