-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgatsby-node.js
170 lines (154 loc) · 4.36 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
const path = require("path");
const { createFilePath } = require(`gatsby-source-filesystem`);
const slugify = require("@sindresorhus/slugify");
exports.createPages = async ({ actions, graphql, reporter }) => {
const { createPage } = actions;
const blogList = path.resolve(`./src/templates/blog-list.js`);
const result = await graphql(`
{
allMarkdownRemark(sort: { order: DESC, fields: [frontmatter___date] }) {
edges {
node {
id
frontmatter {
slug
template
title
featuredImage {
childImageSharp {
gatsbyImageData(layout: FULL_WIDTH)
}
}
}
}
}
}
}
`);
// Handle errors
if (result.errors) {
reporter.panicOnBuild(`Error while running GraphQL query.`);
return;
}
// Index page
const homepage = result.data.allMarkdownRemark.edges.filter(
(product) => product.node.frontmatter.template == "index-page"
);
homepage.forEach((home) => {
const id = home.node.id;
createPage({
path: home.node.frontmatter.slug,
component: path.resolve(
`src/templates/${String(home.node.frontmatter.template)}.js`
),
// additional data can be passed via context
context: {
id,
},
});
});
// Contact page
const contactpage = result.data.allMarkdownRemark.edges.filter(
(product) => product.node.frontmatter.template == "contact-page"
);
contactpage.forEach((contact) => {
const id = contact.node.id;
createPage({
path: contact.node.frontmatter.slug,
component: path.resolve(
`src/templates/${String(contact.node.frontmatter.template)}.js`
),
// additional data can be passed via context
context: {
id,
},
});
});
// Blogs
// Create markdown pages
let blogPostsCount = 0;
const posts = result.data.allMarkdownRemark.edges.filter(
(product) => product.node.frontmatter.template == "blog-post"
);
posts.forEach((post, index) => {
const id = post.node.id;
const postTitle = post.node.frontmatter.title;
const previous = index === posts.length - 1 ? null : posts[index + 1].node;
const next = index === 0 ? null : posts[index - 1].node;
const prefix = `/blog/`;
const slug = slugify(postTitle);
createPage({
path: prefix + slug,
component: path.resolve(
`src/templates/${String(post.node.frontmatter.template)}.js`
),
// additional data can be passed via context
context: {
id,
previous,
next,
},
});
// Count blog posts.
if (post.node.frontmatter.template === "blog-post") {
blogPostsCount++;
}
});
// Create blog-list pages
const postsPerPage = 9;
const numPage = Math.ceil(blogPostsCount / postsPerPage);
Array.from({ length: numPage }).forEach((_, i) => {
createPage({
path: i === 0 ? `/blog` : `/blog/${i + 1}`,
component: blogList,
context: {
limit: postsPerPage,
skip: i * postsPerPage,
numPage,
currentPage: i + 1,
},
});
});
// Tags
// Create markdown pages
let tagPageCount = 0;
const tags = result.data.allMarkdownRemark.edges.filter(
(product) => product.node.frontmatter.template == "tags-page"
);
tags.forEach((tag, index) => {
const id = tag.node.id;
const tagTitle = tag.node.frontmatter.title;
const previous = index === tags.length - 1 ? null : tags[index + 1].node;
const next = index === 0 ? null : tags[index - 1].node;
const prefix = `/tag/`;
const slug = slugify(tagTitle);
createPage({
path: prefix + slug,
component: path.resolve(
`src/templates/${String(tag.node.frontmatter.template)}.js`
),
// additional data can be passed via context
context: {
id,
tagTitle,
previous,
next,
},
});
// Count tag posts.
if (tag.node.frontmatter.template === "tags-page") {
tagPageCount++;
}
});
exports.onCreateNode = ({ node, getNode, actions }) => {
const { createNodeField } = actions;
if (node.internal.type === `MarkdownRemark`) {
const slug = createFilePath({ node, getNode, basePath: `pages` });
createNodeField({
node,
name: `slug`,
value: slug,
});
}
};
};