2018-11-29 10:47:42 +01:00
|
|
|
/* eslint-disable no-console */
|
|
|
|
|
2018-11-07 16:13:20 +01:00
|
|
|
const path = require('path')
|
|
|
|
const { createFilePath } = require('gatsby-source-filesystem')
|
2018-11-29 10:47:42 +01:00
|
|
|
const { redirects } = require('./config')
|
2018-11-07 12:24:53 +01:00
|
|
|
|
2018-11-07 16:13:20 +01:00
|
|
|
exports.onCreateNode = ({ node, getNode, actions }) => {
|
|
|
|
const { createNodeField } = actions
|
|
|
|
|
2018-11-08 16:03:16 +01:00
|
|
|
if (node.internal.type === 'MarkdownRemark') {
|
2018-11-07 16:13:20 +01:00
|
|
|
const fileNode = getNode(node.parent)
|
|
|
|
const parsedFilePath = path.parse(fileNode.relativePath)
|
2018-11-14 15:17:19 +01:00
|
|
|
|
|
|
|
let slug = createFilePath({ node, getNode, basePath: 'content' })
|
|
|
|
let section = parsedFilePath.dir
|
|
|
|
|
|
|
|
if (node.frontmatter.slug) {
|
|
|
|
;({ slug } = node.frontmatter)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (node.frontmatter.section) {
|
|
|
|
;({ section } = node.frontmatter)
|
|
|
|
}
|
2018-11-07 16:13:20 +01:00
|
|
|
|
|
|
|
createNodeField({
|
|
|
|
node,
|
|
|
|
name: 'slug',
|
|
|
|
value: slug
|
|
|
|
})
|
|
|
|
|
|
|
|
createNodeField({
|
|
|
|
node,
|
|
|
|
name: 'section',
|
|
|
|
value: section
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
exports.createPages = ({ graphql, actions }) => {
|
2018-11-29 10:47:42 +01:00
|
|
|
const { createPage, createRedirect } = actions
|
|
|
|
|
2018-11-07 16:13:20 +01:00
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
resolve(
|
|
|
|
graphql(
|
|
|
|
`
|
|
|
|
{
|
2018-11-09 22:10:35 +01:00
|
|
|
allMarkdownRemark(
|
|
|
|
filter: { fileAbsolutePath: { regex: "/content/" } }
|
|
|
|
) {
|
2018-11-07 16:13:20 +01:00
|
|
|
edges {
|
|
|
|
node {
|
|
|
|
fields {
|
|
|
|
slug
|
|
|
|
section
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-11-14 13:00:32 +01:00
|
|
|
|
2018-11-16 14:52:42 +01:00
|
|
|
devOceanDocs: allMarkdownRemark(
|
2018-11-14 15:17:19 +01:00
|
|
|
filter: {
|
2018-11-15 14:46:20 +01:00
|
|
|
fileAbsolutePath: { regex: "/dev-ocean/doc/" }
|
2018-11-14 15:17:19 +01:00
|
|
|
}
|
|
|
|
) {
|
|
|
|
edges {
|
|
|
|
node {
|
|
|
|
fields {
|
|
|
|
slug
|
|
|
|
section
|
2018-11-14 13:00:32 +01:00
|
|
|
}
|
2018-11-14 17:02:31 +01:00
|
|
|
frontmatter {
|
|
|
|
slug
|
|
|
|
title
|
|
|
|
description
|
|
|
|
section
|
|
|
|
}
|
2018-11-14 13:00:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-11-07 16:13:20 +01:00
|
|
|
}
|
|
|
|
`
|
|
|
|
).then(result => {
|
|
|
|
if (result.errors) {
|
|
|
|
/* eslint-disable-next-line no-console */
|
|
|
|
console.log(result.errors)
|
|
|
|
reject(result.errors)
|
|
|
|
}
|
|
|
|
|
|
|
|
const docTemplate = path.resolve('./src/templates/Doc.jsx')
|
2018-11-14 13:00:32 +01:00
|
|
|
const posts = result.data.allMarkdownRemark.edges
|
2018-11-07 16:13:20 +01:00
|
|
|
|
|
|
|
// Create Doc pages
|
|
|
|
posts.forEach(post => {
|
|
|
|
createPage({
|
|
|
|
path: `${post.node.fields.slug}`,
|
|
|
|
component: docTemplate,
|
|
|
|
context: {
|
|
|
|
slug: post.node.fields.slug,
|
|
|
|
section: post.node.fields.section
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-11-16 14:52:42 +01:00
|
|
|
// Create pages from dev-ocean contents
|
|
|
|
const postsDevOcean = result.data.devOceanDocs.edges
|
2018-11-14 13:00:32 +01:00
|
|
|
|
2018-11-16 14:52:42 +01:00
|
|
|
postsDevOcean
|
2018-11-14 17:02:31 +01:00
|
|
|
// only grab files with required frontmatter defined
|
|
|
|
.filter(
|
|
|
|
post =>
|
2018-11-16 14:52:42 +01:00
|
|
|
post.node.frontmatter &&
|
2018-11-14 17:02:31 +01:00
|
|
|
post.node.frontmatter.slug &&
|
|
|
|
post.node.frontmatter.title &&
|
|
|
|
post.node.frontmatter.description &&
|
|
|
|
post.node.frontmatter.section
|
|
|
|
)
|
|
|
|
.forEach(post => {
|
|
|
|
createPage({
|
|
|
|
path: `${post.node.fields.slug}`,
|
|
|
|
component: docTemplate,
|
|
|
|
context: {
|
|
|
|
slug: post.node.fields.slug,
|
|
|
|
section: post.node.fields.section
|
|
|
|
}
|
|
|
|
})
|
2018-11-14 15:17:19 +01:00
|
|
|
})
|
|
|
|
|
2018-11-29 10:53:35 +01:00
|
|
|
//
|
|
|
|
// create redirects
|
|
|
|
//
|
|
|
|
redirects.forEach(({ from, to }) => {
|
|
|
|
createRedirect({
|
|
|
|
fromPath: from,
|
|
|
|
redirectInBrowser: true,
|
|
|
|
toPath: to
|
|
|
|
})
|
|
|
|
|
|
|
|
console.log('Create redirect: ' + from + ' --> ' + to)
|
|
|
|
})
|
|
|
|
|
2018-11-07 16:13:20 +01:00
|
|
|
resolve()
|
|
|
|
})
|
|
|
|
)
|
|
|
|
})
|
|
|
|
}
|