-
Notifications
You must be signed in to change notification settings - Fork 3
/
gatsby-node.js
70 lines (60 loc) · 2.22 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
/**
*
* If you are using a local unsigned TLS/SSL cert, the below
* NODE_TLS thingy must be present for GraphQL to work.
*
*/
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0'
const _ = require(`lodash`)
const Promise = require(`bluebird`)
const path = require(`path`)
const slash = require(`slash`)
const queryAll = require(`./src/queries/queryAll.js`)
const createPaginatedPages = require('gatsby-paginate')
exports.createPages = ({ graphql, actions }) => {
const { createPage } = actions
return new Promise((resolve, reject) => {
// Templates
// Page Template
const pageTemplate = path.resolve('./src/templates/page.js')
// Post Template. Use either one of these or conditionally render
// postwithsidebar.js on certain posts
// const postTemplate = path.resolve('./src/templates/post.js')
const postTemplate = path.resolve('./src/templates/postwithsidebar.js')
resolve(
graphql(queryAll).then(result => {
if (result.errors) reject(result.errors)
// Pages detail
const pages = result.data.allWordpressPage.edges
pages.forEach(edge => {
createPage({
path: `/${edge.node.slug}/`,
component: slash(pageTemplate),
context: {
id: edge.node.id
}
})
})
// Posts detail
const posts = result.data.allWordpressPost.edges
createPaginatedPages({
edges: posts,
createPage,
pageTemplate: 'src/templates/posts.js',
pageLength: 10,
pathPrefix: 'posts'
})
posts.forEach(edge => {
createPage({
path: `/post/${edge.node.slug}/`,
component: slash(postTemplate),
context: {
id: edge.node.id,
postId: edge.node.wordpress_id
}
})
})
})
)
})
}