forked from apollographql/blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-node.js
88 lines (83 loc) · 2 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
const PAGE_SIZE = 10;
exports.createPages = async ({actions, graphql}) => {
const {data} = await graphql(`
{
allWpPost {
nodes {
uri
id
categories {
nodes {
id
}
}
}
}
allWpCategory(filter: {slug: {ne: "uncategorized"}}) {
nodes {
id
slug
name
count
}
}
allWpUser {
nodes {
id
slug
}
}
}
`);
const postTemplate = require.resolve('./src/components/post-template');
data.allWpPost.nodes.forEach((post) => {
actions.createPage({
path: post.uri,
component: postTemplate,
context: {
id: post.id,
categoriesIn: post.categories.nodes.map((category) => category.id)
}
});
});
const categoryTemplate = require.resolve(
'./src/components/category-template'
);
data.allWpCategory.nodes.forEach((category, index, categories) => {
const pageCount = Math.ceil(category.count / PAGE_SIZE);
for (let i = 0; i < pageCount; i++) {
actions.createPage({
path: `/category/${category.slug}/${i + 1}`,
component: categoryTemplate,
context: {
...category,
categories,
limit: PAGE_SIZE,
skip: PAGE_SIZE * i
}
});
}
});
const authorTemplate = require.resolve('./src/components/author-template');
data.allWpUser.nodes.forEach((author) => {
actions.createPage({
path: '/author/' + author.slug,
component: authorTemplate,
context: {
id: author.id
}
});
});
const pageCount = Math.ceil(data.allWpPost.nodes.length / PAGE_SIZE);
const archiveTemplate = require.resolve('./src/components/archive-template');
for (let i = 0; i < pageCount; i++) {
actions.createPage({
path: `/archive/${i + 1}`,
component: archiveTemplate,
context: {
limit: PAGE_SIZE,
skip: PAGE_SIZE * i
}
});
}
};