-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-node.js
72 lines (64 loc) · 2.19 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
/* 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
}
}
}
}
`).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) 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;
});
};