mirror of
https://github.com/kingomarnajjar/gatsby-starter-netlify-cms.git
synced 2026-07-26 06:37:25 +10:00
87 lines
2 KiB
JavaScript
87 lines
2 KiB
JavaScript
const path = require("path");
|
|
|
|
exports.createPages = ({ boundActionCreators, graphql }) => {
|
|
const { createPage } = boundActionCreators;
|
|
|
|
return graphql(`
|
|
{
|
|
allMarkdownRemark(
|
|
sort: { order: DESC, fields: [frontmatter___date] }
|
|
limit: 1000
|
|
) {
|
|
edges {
|
|
node {
|
|
excerpt(pruneLength: 400)
|
|
html
|
|
id
|
|
frontmatter {
|
|
templateKey
|
|
path
|
|
date
|
|
title
|
|
image
|
|
heading
|
|
description
|
|
intro {
|
|
blurbs {
|
|
image
|
|
text
|
|
}
|
|
heading
|
|
description
|
|
}
|
|
main {
|
|
heading
|
|
description
|
|
image1 {
|
|
alt
|
|
image
|
|
}
|
|
image2 {
|
|
alt
|
|
image
|
|
}
|
|
image3 {
|
|
alt
|
|
image
|
|
}
|
|
}
|
|
testimonials {
|
|
author
|
|
quote
|
|
}
|
|
full_image
|
|
pricing {
|
|
heading
|
|
description
|
|
plans {
|
|
description
|
|
items
|
|
plan
|
|
price
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`).then(result => {
|
|
if (result.errors) {
|
|
result.errors.forEach(e => console.error(e.toString()));
|
|
return Promise.reject(result.errors);
|
|
}
|
|
|
|
return result.data.allMarkdownRemark.edges.forEach(({ node }) => {
|
|
createPage({
|
|
path: node.frontmatter.path,
|
|
component: path.resolve(
|
|
`src/templates/${String(node.frontmatter.templateKey)}.js`
|
|
),
|
|
context: {
|
|
path: node.frontmatter.path
|
|
} // additional data can be passed via context
|
|
});
|
|
});
|
|
});
|
|
};
|