-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-node.js
153 lines (139 loc) · 3.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
require('dotenv').config();
const path = require('path');
const { merge } = require('webpack-merge');
const { fmImagesToRelative } = require('gatsby-remark-relative-images');
const postsPerPage = 6;
exports.onCreateWebpackConfig = ({ actions, getConfig, plugins }) => {
let config = getConfig();
config.module.rules = config.module.rules.map((item) => {
const { test } = item;
if (test && test.toString().includes('svg')) {
return {
...item,
exclude: [path.resolve(__dirname, 'src', 'icons')],
};
}
return {
...item,
};
});
config = merge(
{
resolve: {
alias: {
'~': path.resolve(__dirname, 'src'),
},
},
plugins: [
plugins.define(
[
'GATSBY_ALGOLIA_SEARCH_KEY',
'GATSBY_ALGOLIA_APP_ID',
'ALGOLIA_INDEX_NAME',
].reduce((agg, current) => ({
...agg,
[`process.env.${current}`]: JSON.stringify(process.env[current]),
})),
{}
),
],
module: {
rules: [
{
test: /\.svg$/,
use: [
{ loader: 'svg-sprite-loader' },
'svg-transform-loader',
'svgo-loader',
],
include: [path.resolve(__dirname, 'src', 'icons')],
},
],
},
},
config
);
actions.replaceWebpackConfig(config);
};
exports.createPages = async ({ actions, graphql, reporter }) => {
const { createPage } = actions;
const result = await graphql(`
{
allMdx(sort: { order: DESC, fields: [frontmatter___date] }, limit: 1000) {
nodes {
slug
frontmatter {
tags
}
}
}
}
`);
// Handle errors
if (result.errors) {
reporter.panicOnBuild(`Error while running GraphQL query.`);
return;
}
const posts = result.data.allMdx.nodes;
generateBlogList(createPage, posts);
generateBlog(createPage, posts);
generateTaggedBlogs(createPage, posts);
};
function generateBlogList(createPage, posts) {
const postsPerPage = 6;
const numPages = Math.ceil(posts.length / postsPerPage);
Array.from({ length: numPages }).forEach((_, i) => {
createPage({
path: i === 0 ? `/blogs` : `/blogs/${i + 1}`,
component: path.resolve('./src/templates/Blogs.tsx'),
context: {
limit: postsPerPage,
skip: i * postsPerPage,
numPages,
currentPage: i + 1,
},
});
});
}
function generateTaggedBlogs(createPage, posts) {
const groupedPosts = {};
for (const post of posts) {
for (const tag of post.frontmatter.tags) {
groupedPosts[tag] = groupedPosts[tag] || [];
groupedPosts[tag].push(post);
}
}
Object.entries(groupedPosts).forEach(([tag, posts]) => {
const numPages = Math.ceil(posts.length / postsPerPage);
Array.from({ length: numPages }).forEach((_, i) => {
const lowercaseTag = tag.toLowerCase();
createPage({
path:
i === 0 ? `/tags/${lowercaseTag}/` : `/tags/${lowercaseTag}/${i + 1}`,
component: path.resolve('./src/templates/TaggedBlogs.tsx'),
context: {
tag,
limit: postsPerPage,
skip: i * postsPerPage,
numPages,
currentPage: i + 1,
},
});
});
});
}
function generateBlog(createPage, posts) {
const blogPostTemplate = path.resolve(`src/templates/BlogTemplate.tsx`);
posts.forEach((post) => {
createPage({
path: `/blogs/${post.slug}`,
component: blogPostTemplate,
context: {
slug: post.slug,
},
});
});
}
exports.onCreateNode = ({ node }) => {
fmImagesToRelative(node);
};