-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-node.js
135 lines (120 loc) · 3.42 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
const path = require(`path`)
const {
createFilePath,
createRemoteFileNode,
} = require(`gatsby-source-filesystem`)
const allArticles = require("./src/data/articles.json")
exports.sourceNodes = async ({
actions: { createNode, createNodeField },
createContentDigest,
createNodeId,
getCache,
getNodesByType,
}) => {
// this is needed for the fix, unused, when part 1 and 2 are commented out
const all_cached_file_nodes = await getNodesByType(`File`)
const promisedArticles = allArticles.map(async article => {
const { title, images, thumbnail_url, text_content } = article
const article_node_id = createNodeId(title)
const all_article_image_nodes = await Promise.all(
images?.map(async ({ url }) => {
let articleImageNode
// Part 1 of the fix here
// const cached_image_node = all_cached_file_nodes.find(
// image => image.url === url
// )
// if (!cached_image_node) {
try {
articleImageNode = await createRemoteFileNode({
url: url,
parentNodeId: article_node_id,
createNode,
createNodeId,
getCache,
name: `articleImage`,
})
await createNodeField({
node: articleImageNode,
name: `caption`,
value: `Caption for image`,
})
} catch (error) {
console.log(error)
}
// Part 2, uncomment these two to keep the build running after chaning the json file
// } else {
// articleImageNode = cached_image_node
// }
return articleImageNode
})
)
let thumbnailImageNode
try {
thumbnailImageNode = await createRemoteFileNode({
url: thumbnail_url,
parentNodeId: article_node_id,
createNodeId,
createNode,
getCache,
})
} catch (error) {
console.log(error)
}
const articleNode = await createNode({
article_images_source: images,
article_images: all_article_image_nodes?.map(({ id }) => id),
thumbnail: thumbnailImageNode?.id,
thumbnail_url: thumbnail_url,
title: title,
text_content: text_content,
id: article_node_id,
parent: null,
children: [],
internal: {
type: `BlogArticle`,
contentDigest: createContentDigest(article),
},
})
return articleNode
})
await Promise.all(promisedArticles)
}
exports.createSchemaCustomization = ({ actions }) => {
const { createTypes } = actions
const typeDefs = `
type BlogArticle implements Node {
article_images: [File] @link,
thumbnail: File @link
}
`
createTypes(typeDefs)
}
exports.createPages = async ({ graphql, actions, reporter }) => {
const { createPage } = actions
// Get all markdown blog posts sorted by date
const result = await graphql(
`
{
allBlogArticle {
nodes {
id
title
}
}
}
`
)
const articles = result.data.allBlogArticle.nodes
// Create blog posts pages
// But only if there's at least one markdown file found at "content/blog" (defined in gatsby-config.js)
// `context` is available in the template as a prop and as a variable in GraphQL
articles.map(({ id, title }) => {
createPage({
path: title,
component: path.resolve(`./src/templates/blog-article.js`),
context: {
id: id,
},
})
})
}