-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-node.js
145 lines (130 loc) · 4.05 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
exports.createPages = async ({ graphql, actions }) => {
const postsPerPage = Number(process.env.GATSBY_POST_PER_PAGE) || 12;
// templates path
const singleBlogTemplate = require.resolve('./src/templates/single-blog.js');
const blogListTemplate = require.resolve('./src/templates/blog-list.js');
const singleAuthorTemplate = require.resolve(
'./src/templates/single-author.js'
);
const authorListTemplate = require.resolve('./src/templates/author-list.js');
const contactTemplate = require.resolve('./src/templates/contact.js');
// contact page creation
actions.createPage({
path: '/contacto',
component: contactTemplate,
context: {},
});
// const { createPage } = actions;
const result = await graphql(`
{
allSanityBlog {
nodes {
id
slug {
current
}
}
}
allSanityAuthor {
nodes {
id
slug {
current
}
}
}
}
`);
if (result.errors) throw result.errors;
const blogs = result.data.allSanityBlog.nodes;
const authors = result.data.allSanityAuthor.nodes;
// const poems = result.data.allSanityPoem.nodes;
// single poem pages
// poems.forEach((poem) => {
// actions.createPage({
// path: `/escritura-creativa/${poem.slug.current}`,
// component: singlePoemTemplate,
// context: { id: poem.id },
// });
// });
// single blogs pages
blogs.forEach((blog) => {
actions.createPage({
path: `/blog/${blog.slug.current}`,
component: singleBlogTemplate,
context: { id: blog.id },
});
});
// single category pages
// categories.forEach((category) => {
// actions.createPage({
// path: `/categorias/${category.slug.current}`,
// component: singleCategoryTemplate,
// context: { id: category.id },
// });
// });
// single Author pages
authors.forEach((author) => {
actions.createPage({
path: `/miembros/${author.slug.current}`,
component: singleAuthorTemplate,
context: { id: author.id },
});
});
// poems paginated pages
// const totalPoemListPages = Math.ceil(poems.length / postsPerPage);
// Array.from({ length: totalPoemListPages }).forEach((_, index) => {
// actions.createPage({
// path: index === 0 ? `/escritura-creativa` : `/escritura-creativa/${index + 1}`,
// component: poemListTemplate,
// context: {
// limit: postsPerPage,
// offset: index * postsPerPage,
// numberOfPages: totalPoemListPages,
// currentPage: index + 1,
// },
// });
// });
// blogs paginated pages
const totalBlogListPages = Math.ceil(blogs.length / postsPerPage);
Array.from({ length: totalBlogListPages }).forEach((_, index) => {
actions.createPage({
path: index === 0 ? `/blog` : `/blog/${index + 1}`,
component: blogListTemplate,
context: {
limit: postsPerPage,
offset: index * postsPerPage,
numberOfPages: totalBlogListPages,
currentPage: index + 1,
},
});
});
// category paginated pages
// const totalCategoryListPages = Math.ceil(categories.length / postsPerPage);
// Array.from({ length: totalCategoryListPages }).forEach((_, index) => {
// actions.createPage({
// path: index === 0 ? `/categorias` : `/categorias/${index + 1}`,
// component: categoryListTemplate,
// context: {
// limit: postsPerPage,
// offset: index * postsPerPage,
// numberOfPages: totalCategoryListPages,
// currentPage: index + 1,
// },
// });
// });
// Author paginated pages
const totalAuthorListPages = Math.ceil(authors.length / postsPerPage);
Array.from({ length: totalAuthorListPages }).forEach((_, index) => {
actions.createPage({
path: index === 0 ? `/miembros` : `/miembros/${index + 1}`,
component: authorListTemplate,
context: {
limit: postsPerPage,
offset: index * postsPerPage,
numberOfPages: totalAuthorListPages,
currentPage: index + 1,
},
});
});
};