-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-node.js
140 lines (129 loc) · 3.83 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
const path = require('path');
const slash = require('slash');
const {kebabCase, uniq, get, compact, times} = require('lodash');
// Don't forget to update hard code values into:
// - `templates/blog-page.tsx:23`
// - `pages/blog.tsx:26`
// - `pages/blog.tsx:121`
const POSTS_PER_PAGE = 10;
const cleanArray = arr => compact(uniq(arr));
// Create slugs for files.
// Slug will used for blog page path.
exports.onCreateNode = ({node, boundActionCreators, getNode}) => {
const {createNodeField} = boundActionCreators;
let slug;
switch (node.internal.type) {
case `MarkdownRemark`:
const fileNode = getNode(node.parent);
const [basePath, name] = fileNode.relativePath.split('/');
slug = `/${basePath}/${name}/`;
break;
}
if (slug) {
createNodeField({node, name: `slug`, value: slug});
}
};
// Implement the Gatsby API `createPages`.
// This is called after the Gatsby bootstrap is finished
// so you have access to any information necessary to
// programatically create pages.
exports.createPages = ({graphql, boundActionCreators}) => {
const {createPage} = boundActionCreators;
return new Promise((resolve, reject) => {
const templates = ['blogPost', 'tagsPage', 'blogPage']
.reduce((mem, templateName) => {
return Object.assign({}, mem,
{[templateName]: path.resolve(`src/templates/${kebabCase(templateName)}.tsx`)});
}, {});
graphql(
`
{
posts: allMarkdownRemark {
edges {
node {
fields {
slug
}
frontmatter {
tags
}
}
}
}
}
`
).then(result => {
if (result.errors) {
return reject(result.errors);
}
const posts = result.data.posts.edges.map(p => p.node);
// Create blog pages
posts
.filter(post => post.fields.slug.startsWith('/steps/'))
.forEach(post => {
createPage({
path: post.fields.slug,
component: slash(templates.blogPost),
context: {
slug: post.fields.slug
}
});
});
// Create tags pages
posts
.reduce((mem, post) =>
cleanArray(mem.concat(get(post, 'frontmatter.tags')))
, [])
.forEach(tag => {
createPage({
path: `/steps/tags/${kebabCase(tag)}/`,
component: slash(templates.tagsPage),
context: {
tag
}
});
});
// Create blog pagination
const pageCount = Math.ceil(posts.length / POSTS_PER_PAGE);
times(pageCount, index => {
createPage({
path: `/steps/page/${index + 1}/`,
component: slash(templates.blogPage),
context: {
skip: index * POSTS_PER_PAGE
}
});
});
resolve();
});
});
};
/*
Enable React Production Mode - workaround 2017-11-11
https://github.com/fabien0102/gatsby-starter/issues/39#issuecomment-343647558
*/
const extractQueryPlugin = path.resolve(
__dirname,
`node_modules/gatsby/dist/utils/babel-plugin-extract-graphql.js`
);
exports.modifyWebpackConfig = ({config, stage}) => {
if (stage === "build-html") {
config.loader('null', {
test: /CodeMirror/,
loader: 'null-loader'
})
}
if (stage === 'build-javascript') {
// Temporary workaround.
// Here we override the Webpack plugin during the `build-javascript` stage to make everything
// compile down to es5 - turns out Webpack 1's UglifyJsPlugin doesn't like that we have some
// ES6 stuff littered in our final bundle...
config.loader('typescript', {
test: /\.tsx?$/,
loaders: [
`babel-loader?${JSON.stringify({presets: ['babel-preset-env'], plugins: [extractQueryPlugin]})}`,
'ts-loader'
]
});
}
};