-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgatsby-node.js
More file actions
65 lines (55 loc) · 1.32 KB
/
gatsby-node.js
File metadata and controls
65 lines (55 loc) · 1.32 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
const path = require('path');
const getTagSlug = tag =>
tag
.toLowerCase()
.trim()
.replace(/[^a-z0-9]+/g, '-')
.replace(/^-+|-+$/g, '');
exports.createPages = async ({ actions, graphql }) => {
const { createPage } = actions;
const postTemplate = path.resolve(`src/templates/post.js`);
const tagTemplate = path.resolve(`src/templates/tag.js`);
const result = await graphql(`
{
allMarkdownRemark(sort: { frontmatter: { date: DESC } }, limit: 2000) {
edges {
node {
frontmatter {
path
tags
}
}
}
}
}
`);
if (result.errors) {
throw result.errors;
}
const createdTags = new Set();
result.data.allMarkdownRemark.edges.forEach(({ node }) => {
createPage({
path: node.frontmatter.path,
component: postTemplate,
context: {
postPath: node.frontmatter.path,
},
});
if (node.frontmatter.tags) {
node.frontmatter.tags.forEach(tag => {
const tagSlug = getTagSlug(tag);
if (createdTags.has(tagSlug)) {
return;
}
createdTags.add(tagSlug);
createPage({
path: `/tags/${tagSlug}/`,
component: tagTemplate,
context: {
tag,
},
});
});
}
});
};