This repository has been archived by the owner on Nov 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
gatsby-node.js
105 lines (93 loc) · 2.58 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
100
101
102
103
104
105
const { resolve } = require(`path`)
const path = require(`path`)
const glob = require(`glob`)
const chunk = require(`lodash/chunk`)
const { dd } = require(`dumper.js`)
const getTemplates = () => {
const sitePath = path.resolve(`./`)
return glob.sync(`./src/templates/**/*.js`, { cwd: sitePath })
}
//
// @todo move this to gatsby-theme-wordpress
exports.createPages = async ({ actions, graphql, reporter }) => {
const templates = getTemplates()
const {
data: {
allWpContentNode: { nodes: contentNodes },
},
} = await graphql(/* GraphQL */ `
query ALL_CONTENT_NODES {
allWpContentNode(
sort: { fields: modifiedGmt, order: DESC }
filter: { nodeType: { ne: "MediaItem" } }
) {
nodes {
nodeType
uri
id
}
}
}
`)
const contentTypeTemplateDirectory = `./src/templates/single/`
const contentTypeTemplates = templates.filter((path) =>
path.includes(contentTypeTemplateDirectory)
)
await Promise.all(
contentNodes.map(async (node, i) => {
const { nodeType, uri, id } = node
// this is a super super basic template hierarchy
// this doesn't reflect what our hierarchy will look like.
// this is for testing/demo purposes
const templatePath = `${contentTypeTemplateDirectory}${nodeType}.js`
const contentTypeTemplate = contentTypeTemplates.find(
(path) => path === templatePath
)
if (!contentTypeTemplate) {
return
}
await actions.createPage({
component: resolve(contentTypeTemplate),
path: uri,
context: {
id,
nextPage: (contentNodes[i + 1] || {}).id,
previousPage: (contentNodes[i - 1] || {}).id,
},
})
})
)
// create the homepage
const {
data: { allWpPost },
} = await graphql(/* GraphQL */ `
{
allWpPost(sort: { fields: modifiedGmt, order: DESC }) {
nodes {
uri
id
}
}
}
`)
const perPage = 10
const chunkedContentNodes = chunk(allWpPost.nodes, perPage)
await Promise.all(
chunkedContentNodes.map(async (nodesChunk, index) => {
const firstNode = nodesChunk[0]
const page = index + 1
const offset = perPage * index
await actions.createPage({
component: resolve(`./src/templates/index.js`),
path: page === 1 ? `/blog/` : `/blog/${page}/`,
context: {
firstId: firstNode.id,
page: page,
offset: offset,
totalPages: chunkedContentNodes.length,
perPage,
},
})
})
)
}