-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgatsby-node.js
90 lines (75 loc) · 2.47 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
/* Vendor imports */
const path = require('path');
/* App imports */
const config = require('./config');
const utils = require('./src/utils');
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 { site, allMarkdownRemark } = result.data
/* Post pages */
allMarkdownRemark.edges.forEach(({ node }) => {
// Check path prefix of post
if (node.frontmatter.path.indexOf(config.pages.blog) !== 0) throw `Invalid path prefix: ${node.frontmatter.path}`
createPage({
path: node.frontmatter.path,
component: path.resolve('src/templates/post/post.js'),
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/tag/tag.js'),
context: {
tag: tag
}
})
})
/* Archive pages */
const postsForPage = config.postsForArchivePage;
const archivePages = Math.ceil(defaultPosts.length / postsForPage);
for (let i = 0; i < archivePages; i++) {
let posts = defaultPosts.slice(i * postsForPage, i * postsForPage + postsForPage);
let archivePage = i + 1;
createPage({
path: utils.resolvePageUrl(config.pages.archive, archivePage),
component: path.resolve('src/templates/archive/archive.js'),
context: {
postPaths: posts.map(edge => edge.node.frontmatter.path),
archivePage: archivePage,
lastArchivePage: archivePages
}
})
}
})
}