This repository was archived by the owner on May 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathgatsby-node.js
More file actions
173 lines (163 loc) · 3.67 KB
/
gatsby-node.js
File metadata and controls
173 lines (163 loc) · 3.67 KB
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
// Grab some packages from Node.
const path = require("path");
const slash = require("slash");
const { createRemoteFileNode } = require("gatsby-source-filesystem");
/**
* Programmatically create posts, pages, and the archives.
* @link https://www.gatsbyjs.org/docs/node-apis/#createPages
*/
exports.createPages = async ({ graphql, actions }) => {
const { createPage } = actions;
// Run a GraphQL query.
const result = await graphql(`
query {
wordpress {
posts {
edges {
node {
id
postId
slug
status
}
}
}
pages {
edges {
node {
id
pageId
slug
status
}
}
}
categories {
edges {
node {
id
categoryId
slug
description
name
}
}
}
tags {
edges {
node {
id
tagId
slug
description
name
}
}
}
users {
edges {
node {
id
userId
name
slug
}
}
}
}
}
`);
// Error checking.
if (result.errors) {
throw new Error(result.errors);
}
// Destructure data.
const { posts, pages, categories, tags, users } = result.data.wordpress;
// Create posts.
const postTemplate = path.resolve(`./src/templates/post.js`);
posts.edges.forEach(edge => {
createPage({
path: `/${edge.node.slug}/`,
component: slash(postTemplate),
context: {
id: edge.node.id,
wordpress_id: edge.node.pageId
}
});
});
// Create pages.
const pageTemplate = path.resolve(`./src/templates/page.js`);
pages.edges.forEach(edge => {
createPage({
path: `/${edge.node.slug}/`,
component: slash(pageTemplate),
context: {
id: edge.node.id
}
});
});
// Create category archives.
const categoryTemplate = path.resolve(`./src/templates/category.js`);
categories.edges.forEach(edge => {
createPage({
path: `/category/${edge.node.slug}/`,
component: slash(categoryTemplate),
context: {
id: edge.node.id
}
});
});
// Create tag archives.
const tagTemplate = path.resolve(`./src/templates/tag.js`);
tags.edges.forEach(edge => {
createPage({
path: `/tag/${edge.node.slug}/`,
component: slash(tagTemplate),
context: {
id: edge.node.id
}
});
});
// Create author archives.
const authorTemplate = path.resolve(`./src/templates/author.js`);
users.edges.forEach(edge => {
createPage({
path: `/author/${edge.node.slug}/`,
component: slash(authorTemplate),
context: {
id: edge.node.id
}
});
});
};
/**
* Download WordPress images, add them to GraphQL schema.
* @link https://www.gatsbyjs.org/docs/node-apis/#createResolvers
* @link https://www.gatsbyjs.org/packages/gatsby-source-filesystem/?=#createremotefilenode
*/
exports.createResolvers = async ({
actions,
cache,
createNodeId,
createResolvers,
store
}) => {
const { createNode } = actions;
const resolvers = {
WordPress_MediaItem: {
imageFile: {
type: "File",
resolve: source => {
return createRemoteFileNode({
cache,
createNode,
createNodeId,
store,
url: source.sourceUrl
});
}
}
}
};
await createResolvers(resolvers);
};