-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-node.js
76 lines (69 loc) · 2.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
/* 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
keywords
prePage
nextPage
}
fileAbsolutePath
}
}
}
}
`).then(result => {
if (result.errors) return Promise.reject(result.errors);
const { allMarkdownRemark } = result.data;
/* Post pages */
allMarkdownRemark.edges.forEach(({ node }) => {
// 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),
},
});
});
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 && tag !== '酝酿池') allTags.push(tag);
});
});
allTags.forEach(tag => {
// 想修改一下「聪明人的个人成长」标签名称,但为了避免有人收藏过页面导致无法访问,所以保持路径不变。特殊处理下。
const page_path = tag === '聪明人的个人成长' ? 'Personal Development for Smart People' : tag;
createPage({
path: utils.resolvePageUrl(config.pages.tag, page_path),
component: path.resolve('src/templates/tags/index.jsx'),
context: {
tag,
},
});
});
return 1;
});
};