-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-node.js
57 lines (50 loc) · 1.39 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
const path = require(`path`)
const { slash } = require(`gatsby-core-utils`)
// exports.onCreatePage = ({ page, actions }) => {
// const { deletePage, createPage } = actions
// return new Promise(resolve => {
// // if the page component is the index page component
// if (page.componentPath === `${__dirname}/src/pages/index/index.js`) {
// deletePage(page)
// // create a new page but with '/' as path
// createPage({
// ...page,
// path: "/",
// })
// }
// resolve()
// })
// }
exports.createPages = async ({ graphql, actions }) => {
const { createPage } = actions
// query content for WordPress posts
const result = await graphql(`
query {
allWordpressPost {
edges {
node {
id
slug
title
content
}
}
}
}
`)
const postTemplate = path.resolve(`./src/templates/post.tsx`)
result.data.allWordpressPost.edges.forEach(edge => {
createPage({
// will be the url for the page
path: `news/${edge.node.slug}`,
// specify the component template of your choice
component: slash(postTemplate),
// In the ^template's GraphQL query, 'id' will be available
// as a GraphQL variable to query for this posts's data.
context: {
id: edge.node.id,
postData: edge.node,
},
})
})
}