1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-06-30 05:31:56 +02:00
blog/gatsby-node.js

145 lines
3.7 KiB
JavaScript

const path = require('path')
const { createFilePath } = require('gatsby-source-filesystem')
// Create slug & date for posts from file path values
exports.onCreateNode = ({ node, actions, getNode }) => {
const { createNodeField } = actions
if (node.internal.type === 'MarkdownRemark') {
const fileNode = getNode(node.parent)
const parsedFilePath = path.parse(fileNode.relativePath)
const slugOriginal = createFilePath({ node, getNode })
// slug
let slug
if (parsedFilePath.name === 'index') {
slug = `/${parsedFilePath.dir.substring(11)}` // remove date from file dir
} else {
slug = `/${slugOriginal.substring(12)}` // remove first slash & date from file path
}
createNodeField({
node,
name: 'slug',
value: slug
})
// date
let date
if (node.frontmatter.date) {
date = `${node.frontmatter.date}`
} else {
date = `${slugOriginal.substring(1, 10)}` // grab date from file path
}
createNodeField({
node,
name: 'date',
value: date
})
}
}
exports.createPages = ({ graphql, actions }) => {
const { createPage } = actions
return new Promise((resolve, reject) => {
const postTemplate = path.resolve('src/templates/Post.jsx')
// const indexTemplate = path.resolve('src/templates/index.jsx')
// const tagTemplate = path.resolve('src/templates/tag.jsx')
// const categoryTemplate = path.resolve('src/templates/category.jsx')
resolve(
graphql(
`
{
allMarkdownRemark(
sort: { fields: [fields___date], order: DESC }
limit: 1000
) {
edges {
node {
fields {
slug
date
}
}
}
}
}
`
).then(result => {
if (result.errors) {
/* eslint no-console: "off" */
console.log(result.errors)
reject(result.errors)
}
// Create Posts
const posts = result.data.allMarkdownRemark.edges
posts.forEach((post, index) => {
const previous =
index === posts.length - 1 ? null : posts[index + 1].node
const next = index === 0 ? null : posts[index - 1].node
createPage({
path: `${post.node.fields.slug}`,
component: postTemplate,
context: {
slug: post.node.fields.slug,
previous,
next
}
})
})
// const tagSet = new Set()
// const tagMap = new Map()
// const categorySet = new Set()
// posts.forEach(post => {
// if (post.node.frontmatter.tags) {
// post.node.frontmatter.tags.forEach(tag => {
// tagSet.add(tag)
// const array = tagMap.has(tag) ? tagMap.get(tag) : []
// array.push(post)
// tagMap.set(tag, array)
// })
// }
// if (post.node.frontmatter.category) {
// categorySet.add(post.node.frontmatter.category)
// }
// })
// const tagList = Array.from(tagSet)
// tagList.forEach(tag => {
// // Creates tag pages
// createPage({
// path: `/tags/${tag}/`,
// component: tagTemplate,
// context: { tag }
// })
// })
// const categoryList = Array.from(categorySet)
// categoryList.forEach(category => {
// createPage({
// path: `/categories/${category}/`,
// component: categoryTemplate,
// context: { category }
// })
// })
resolve()
})
)
})
}