This repository was archived by the owner on Jul 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgatsby-node.js
More file actions
117 lines (108 loc) · 3.04 KB
/
Copy pathgatsby-node.js
File metadata and controls
117 lines (108 loc) · 3.04 KB
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
/* Vendor imports */
const path = require('path');
/* App imports */
const config = require('./config');
const utils = require('./src/utils/pageUtils');
exports.createPages = ({ actions, graphql }) => {
const { createPage } = actions;
return graphql(`
{
allMarkdownRemark(sort: {order: DESC, fields: [frontmatter___date]}) {
edges {
node {
frontmatter {
path
tags
}
fileAbsolutePath
}
next {
frontmatter {
path
title
}
}
previous {
frontmatter {
path
title
}
}
}
}
}
`).then((result) => {
if (result.errors) return Promise.reject(result.errors);
const { allMarkdownRemark } = result.data;
/* Post pages */
allMarkdownRemark.edges.forEach(({ node, next, previous }) => {
// Check path prefix of post
if (node.frontmatter.path.indexOf(config.pages.blog) !== 0) {
// eslint-disable-next-line no-throw-literal
throw `Invalid path prefix: ${node.frontmatter.path}`;
}
createPage({
path: node.frontmatter.path,
component: path.resolve('src/templates/post/post.jsx'),
context: {
postPath: node.frontmatter.path,
translations: utils.getRelatedTranslations(node, allMarkdownRemark.edges),
next,
previous,
},
});
});
const regexForIndex = /index\.md$/;
// Posts in default language, excluded the translated versions
const defaultPosts = allMarkdownRemark.edges
.filter(({ node: { fileAbsolutePath } }) => fileAbsolutePath.match(regexForIndex));
/* Tag pages */
const allTags = [];
defaultPosts.forEach(({ node }) => {
node.frontmatter.tags.forEach((tag) => {
if (allTags.indexOf(tag) === -1) allTags.push(tag);
});
});
allTags
.forEach((tag) => {
createPage({
path: utils.resolvePageUrl(config.pages.tag, tag),
component: path.resolve('src/templates/tags/index.jsx'),
context: {
tag,
},
});
});
return 1;
});
};
exports.onCreateWebpackConfig = ({
actions, stage, plugins, getConfig,
}) => {
if (stage === 'build-javascript' || stage === 'develop') {
const configGet = getConfig();
const miniCssExtractPlugin = configGet.plugins.find(
(plugin) => plugin.constructor.name === 'MiniCssExtractPlugin',
);
if (miniCssExtractPlugin) {
miniCssExtractPlugin.options.ignoreOrder = true;
}
actions.replaceWebpackConfig(configGet);
}
if (stage === 'build-javascript' || stage === 'develop') {
actions.setWebpackConfig({
plugins: [
plugins.provide({ process: 'process/browser' }),
],
});
}
actions.setWebpackConfig({
resolve: {
fallback: {
path: require.resolve('path-browserify'),
os: require.resolve('os-browserify/browser'),
fs: false,
},
},
});
};