mirror of
https://github.com/kremalicious/gatsby-redirect-from.git
synced 2024-12-22 17:23:24 +01:00
68 lines
1.7 KiB
JavaScript
68 lines
1.7 KiB
JavaScript
|
'use strict'
|
||
|
|
||
|
const chalk = require('chalk')
|
||
|
|
||
|
exports.createPages = ({ graphql, actions }) => {
|
||
|
const { createRedirect } = actions
|
||
|
|
||
|
return new Promise((resolve, reject) => {
|
||
|
resolve(
|
||
|
graphql(
|
||
|
`
|
||
|
{
|
||
|
allMarkdownRemark(
|
||
|
filter: { frontmatter: { redirect_from: { ne: null } } }
|
||
|
) {
|
||
|
edges {
|
||
|
node {
|
||
|
fields {
|
||
|
slug
|
||
|
}
|
||
|
frontmatter {
|
||
|
redirect_from
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
`
|
||
|
).then(result => {
|
||
|
if (result.errors) {
|
||
|
console.log(result.errors) // eslint-disable-line no-console
|
||
|
reject(result.errors)
|
||
|
}
|
||
|
|
||
|
const allPosts = result.data.allMarkdownRemark.edges
|
||
|
|
||
|
const redirects = []
|
||
|
|
||
|
// For all posts with redirect_from frontmatter,
|
||
|
// extract all values and push to redirects array
|
||
|
allPosts.forEach(post => {
|
||
|
redirects.push({
|
||
|
from: post.node.frontmatter.redirect_from,
|
||
|
to: post.node.fields.slug
|
||
|
})
|
||
|
})
|
||
|
|
||
|
// Create redirects from the just constructed array
|
||
|
redirects.forEach(({ from, to }) => {
|
||
|
// iterate through all `from` array items
|
||
|
from.forEach(from => {
|
||
|
createRedirect({
|
||
|
fromPath: from,
|
||
|
toPath: to,
|
||
|
isPermanent: true,
|
||
|
redirectInBrowser: true
|
||
|
})
|
||
|
})
|
||
|
})
|
||
|
|
||
|
resolve(
|
||
|
console.log(`${chalk.green('success')} Create redirects`) // eslint-disable-line no-console
|
||
|
)
|
||
|
})
|
||
|
)
|
||
|
})
|
||
|
}
|