forked from jasonbahl/gatsby-wordpress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-node.js
180 lines (158 loc) · 4.29 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
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
let templatePath = `${contentTypeTemplateDirectory}${nodeType}.js`
// get some exceptions
switch(uri) {
case '/email/':
templatePath = `${contentTypeTemplateDirectory}${nodeType}Email.js`
break
case '/events/':
templatePath = `${contentTypeTemplateDirectory}${nodeType}Events.js`
break
case '/news/':
templatePath = `${contentTypeTemplateDirectory}${nodeType}News.js`
break
default:
break
}
//console.log("templatePath:",templatePath)
const contentTypeTemplate = contentTypeTemplates.find(
(path) => path === templatePath
)
if (!contentTypeTemplate) {
dd(node)
reporter.log(``)
reporter.log(``)
reporter.panic(
`[using-gatsby-source-wordpress] No template found at ${templatePath}\nfor single ${nodeType} ${
node.id
} with path ${
node.uri
}\n\nAvailable templates:\n${contentTypeTemplates.join(`\n`)}`
)
}
let updatedPath;
if (nodeType === 'Post') {
updatedPath = `/news${uri}`
} else {
updatedPath = uri
}
await actions.createPage({
component: resolve(contentTypeTemplate),
path: updatedPath,
context: {
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,
},
})
})
)
// create the events archive
const {
data: { allWpEvent },
} = await graphql(/* GraphQL */ `
{
allWpEvent(sort: {order: ASC, fields: startDate}) {
nodes {
uri
id
}
}
}
`)
const eventsPerPage = 4
const chunkedEventNodes = chunk(allWpEvent.nodes, eventsPerPage)
await Promise.all(
chunkedEventNodes.map(async (nodesChunk, index) => {
const page = index + 1
const offset = eventsPerPage * index
await actions.createPage({
component: resolve(`./src/templates/single/PageEventsSearch.js`),
path: page === 1 ? `/events/search/` : `/events/search/${page}/`,
context: {
page: page,
offset: offset,
totalPages: chunkedEventNodes.length,
eventsPerPage,
},
})
})
)
}
exports.createSchemaCustomization = ({ actions }) => {
const { createTypes } = actions;
const typeDefs = `
type WpBlockAttributesObject {
foobar: String
}
`;
createTypes(typeDefs);
}