forked from marcin-pasiewicz/tech-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-node.js
67 lines (62 loc) · 1.49 KB
/
gatsby-node.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
const path = require("path")
const { kebabCase } = require("lodash")
exports.createPages = async gatsbyUtilities => {
const posts = await getPosts(gatsbyUtilities)
createPostPages(posts, gatsbyUtilities)
}
async function getPosts({ graphql, reporter }) {
const results = await graphql(/* GraphQL */ `
query Posts {
allCustomApi {
nodes {
documents {
document {
id
name
elements {
body {
value {
text {
value
}
}
}
img {
url
asset {
altText
}
}
author {
value
}
}
description
lastModified(formatString: "DD/MM/YY")
created(formatString: "DD/MM/YY")
}
}
}
}
}
`)
if (results.errors) {
reporter.panicOnBuild(
`There was an error loading your blog posts`,
results.errors
)
return
}
return results.data.allCustomApi.nodes[0].documents
}
function createPostPages(posts, { actions: { createPage } }) {
posts.forEach(post => {
createPage({
path: `/${kebabCase(post.document.name)}`,
component: path.resolve("./src/templates/post/post.jsx"),
context: {
post: post.document,
},
})
})
}