This repository was archived by the owner on Jan 19, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgatsby-node.ts
94 lines (87 loc) · 2.44 KB
/
gatsby-node.ts
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
import { GatsbyNode } from "gatsby";
import readingTime from "reading-time";
import * as path from "path";
import { createFilePath } from "gatsby-source-filesystem";
import { generatePostSlug, generateTagSlug, slugs } from "./src/logic/slug";
export const createPages: GatsbyNode["createPages"] = async ({
graphql,
actions,
reporter,
}) => {
const { createPage } = actions;
const result = await graphql<Queries.BlogPostsQuery>(`
query BlogPosts {
allMarkdownRemark(sort: { frontmatter: { date: DESC } }, limit: 1000) {
edges {
node {
fields {
slug
}
}
}
}
tagsGroup: allMarkdownRemark(limit: 2000) {
group(field: { frontmatter: { tags: SELECT } }) {
fieldValue
}
}
}
`);
if (result.errors) {
reporter.panicOnBuild(`Create Pages Error while running GraphQL query.`);
return;
}
const posts = result.data!.allMarkdownRemark.edges;
//Create posts pages
posts.forEach((post: any) => {
createPage({
path: post.node.fields.slug,
component: path.resolve(`./src/templates/post.tsx`),
context: {
slug: post.node.fields.slug,
},
});
});
// Create blog home (paginated) pages
const postsPerPage = 11;
const numberOfPages = Math.ceil(posts.length / postsPerPage);
Array.from({ length: numberOfPages }).forEach((_, i) => {
createPage({
path: i === 0 ? slugs.blog : `${slugs.blog}${i + 1}`,
component: path.resolve("./src/templates/blog.tsx"),
context: {
limit: postsPerPage,
skip: i * postsPerPage,
numberOfPages: numberOfPages,
currentPage: i + 1,
},
});
});
//Create tag pages
const tags: any = result.data!.tagsGroup.group;
tags.forEach((tag: any) => {
createPage({
path: generateTagSlug(tag.fieldValue),
component: path.resolve("./src/templates/tag.tsx"),
context: {
tag: tag.fieldValue,
},
});
});
};
export const onCreateNode: GatsbyNode["onCreateNode"] = ({
node,
actions,
getNode,
}) => {
const { createNodeField } = actions;
if (node.internal.type === `MarkdownRemark`) {
const filename = createFilePath({ node, getNode, basePath: `pages` });
createNodeField({ node, name: `slug`, value: generatePostSlug(filename) });
createNodeField({
node,
name: `readingTime`,
value: readingTime(node.rawMarkdownBody as string),
});
}
};