mirror of
https://github.com/kremalicious/portfolio.git
synced 2024-11-16 01:55:15 +01:00
85 lines
1.9 KiB
JavaScript
85 lines
1.9 KiB
JavaScript
const path = require('path')
|
|
|
|
exports.createPages = ({ boundActionCreators, graphql }) => {
|
|
const { createPage } = boundActionCreators
|
|
|
|
return new Promise((resolve, reject) => {
|
|
const template = path.resolve('src/components/organisms/Project.js')
|
|
|
|
resolve(graphql(`
|
|
{
|
|
allProjectsJson {
|
|
edges {
|
|
node {
|
|
title
|
|
slug
|
|
description
|
|
img
|
|
img_more
|
|
techstack
|
|
links {
|
|
title
|
|
url
|
|
}
|
|
}
|
|
previous {
|
|
title
|
|
slug
|
|
img
|
|
}
|
|
next {
|
|
title
|
|
slug
|
|
img
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`).then(result => {
|
|
if (result.errors) {
|
|
reject(result.errors)
|
|
}
|
|
|
|
result.data.allProjectsJson.edges.forEach(
|
|
({ node, previous, next }) => {
|
|
const slug = node.slug
|
|
const title = node.title
|
|
const img = node.img
|
|
const img_more = node.img_more
|
|
const description = node.description
|
|
const links = node.links
|
|
const techstack = node.techstack
|
|
|
|
createPage({
|
|
path: slug,
|
|
component: template,
|
|
context: {
|
|
title,
|
|
slug,
|
|
img,
|
|
img_more,
|
|
description,
|
|
techstack,
|
|
links,
|
|
previous,
|
|
next,
|
|
},
|
|
})
|
|
}
|
|
)
|
|
|
|
resolve()
|
|
}))
|
|
})
|
|
}
|
|
|
|
// https://github.com/gatsbyjs/gatsby/issues/2285#issuecomment-333343938
|
|
exports.modifyWebpackConfig = ({ config, stage }) => {
|
|
if (stage === 'build-html') {
|
|
config.loader('null', {
|
|
test: /webfontloader/,
|
|
loader: 'null-loader',
|
|
})
|
|
}
|
|
}
|