-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-node.js
80 lines (73 loc) · 1.99 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
const { join, resolve } = require('path')
exports.onCreateWebpackConfig = ({ stage, actions }) => {
actions.setWebpackConfig({
resolve: {
alias: {
'~components': join(__dirname, 'src/components'),
'~pages': join(__dirname, 'src/pages'),
'~images': join(__dirname, 'src/images'),
'~constants': join(__dirname, 'src/constants'),
'~designSystem': join(__dirname, 'src/designSystem'),
'~lib': join(__dirname, 'src/lib'),
},
},
})
}
exports.onCreateBabelConfig = ({ actions }) => {
actions.setBabelPreset({
name: 'babel-preset-gatsby',
options: {
reactRuntime: 'automatic',
},
})
}
exports.createPages = async ({ graphql, actions }) => {
const { createPage } = actions
const grapqlRes = await graphql(`
{
allMarkdownRemark(
sort: { fields: [frontmatter___date], order: DESC }
filter: { fileAbsolutePath: { regex: "/index/" }, frontmatter: { title: { ne: "DUMMY" } } }
) {
edges {
node {
id
fileAbsolutePath
frontmatter {
title
permalink
}
}
}
}
}
`)
const posts = grapqlRes.data.allMarkdownRemark.edges
// [Create each blog post page]
posts.forEach(post => {
createPage({
path: post.node.frontmatter.permalink,
component: resolve('./src/templates/BlogPost.tsx'),
context: {
id: post.node.id,
},
})
})
// Create paginated blog list pages
const postsPerPage = 6
const pageCount = Math.ceil(posts.length / postsPerPage)
Array.from({ length: pageCount }).forEach((_, i) => {
const isFirstPage = i === 0
const currentPageNumber = i + 1
createPage({
path: isFirstPage ? '/' : `/page/${currentPageNumber}`,
component: resolve('./src/templates/BlogList.tsx'),
context: {
limit: postsPerPage,
skip: i * postsPerPage,
pageCount,
currentPageNumber,
},
})
})
}