mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-15 09:35:21 +01:00
51 lines
1.3 KiB
JavaScript
51 lines
1.3 KiB
JavaScript
const path = require('path')
|
|
const { createFilePath } = require('gatsby-source-filesystem')
|
|
const { repoContentPath } = require('../config')
|
|
|
|
// Create slug, date & github file link for posts from file path values
|
|
exports.createMarkdownFields = (node, createNodeField, getNode) => {
|
|
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
|
|
// grab date from file path
|
|
let date = new Date(slugOriginal.substring(1, 11)).toISOString() // grab date from file path
|
|
|
|
if (node.frontmatter.date) {
|
|
date = new Date(node.frontmatter.date).toISOString()
|
|
}
|
|
|
|
createNodeField({
|
|
node,
|
|
name: 'date',
|
|
value: date
|
|
})
|
|
|
|
// github file link
|
|
const type = fileNode.sourceInstanceName
|
|
const file = fileNode.relativePath
|
|
const githubLink = `${repoContentPath}/${type}/${file}`
|
|
|
|
createNodeField({
|
|
node,
|
|
name: 'githubLink',
|
|
value: githubLink
|
|
})
|
|
}
|