forked from panzerdp/dmitripavlutin.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-node.js
88 lines (81 loc) · 2.22 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 path = require('path');
const createExcerptsList = require('./gatsby/node/excerpts-list');
const createPost = require('./gatsby/node/post');
const createPlainListByTag = require('./gatsby/node/plain-list-by-tag');
const query = `
{
site {
siteMetadata {
featured {
popularPostsByCategory {
category
slugs
}
}
githubCommentsRepository
}
}
allMarkdownRemark(
sort: {
fields: [frontmatter___published],
order: DESC
},
filter: {
frontmatter: {
type: {
eq: "post"
}
}
},
limit: 1000
) {
edges {
node {
frontmatter {
title
slug
tags
recommended
}
}
}
}
}`;
exports.createPages = async ({ graphql, actions }) => {
const { createPage } = actions;
const result = await graphql(query);
if (result.errors) {
// eslint-disable-next-line no-console
console.log(result.errors);
throw result.errors;
}
const githubCommentsRepository = result.data.site.siteMetadata.githubCommentsRepository;
// Create blog posts pages.
const edges = result.data.allMarkdownRemark.edges;
const popularPostsByCategory = result.data.site.siteMetadata.featured.popularPostsByCategory;
const popularPostsSlugs = popularPostsByCategory.reduce((acc, postsByCategory) => [...acc, ...postsByCategory.slugs], []);
createExcerptsList(createPage, edges, popularPostsSlugs, githubCommentsRepository);
createPost(createPage, edges, popularPostsSlugs, githubCommentsRepository);
createPlainListByTag(createPage, edges);
return result;
};
exports.onCreateWebpackConfig = ({ stage, actions, getConfig }) => {
actions.setWebpackConfig({
resolve: {
modules: [path.resolve(__dirname, 'src'), 'node_modules'],
},
});
// Remove CSS ordering logs
if (stage === 'build-javascript' || stage === 'develop') {
const config = getConfig();
const miniCssExtractPlugin = config.plugins.find(
plugin => {
return plugin.constructor.name === 'MiniCssExtractPlugin';
}
);
if (miniCssExtractPlugin) {
miniCssExtractPlugin.options.ignoreOrder = true;
}
actions.replaceWebpackConfig(config);
}
};