-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgatsby-node.ts
255 lines (230 loc) · 5.67 KB
/
gatsby-node.ts
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
import { mergeWithBackground } from "./src/images/merge-images"
import { IExperience } from "./src/data/showcase/experiences/type.d"
import type { GatsbyNode } from "gatsby"
import type { IProject } from "./src/data/showcase/projects/type.d"
import type { IArticle, ITag } from "./src/data/blog/type.d"
import type { ITool } from "./src/data/tech/tools/type.d"
import type { IFeature } from "./src/data/tech/features/type.d"
const cwd = process.cwd()
const generateImageForProject = async (project: IProject) => {
if (!project.image) {
console.log(`No image for project ${project.name}`)
return
}
console.log(`Generating og image for project ${project.name}`)
const output = `${cwd}/static/seo-images/projects/${project.id}.png`
return mergeWithBackground(project.image, output)
}
const generateImageForArticle = async (article: IArticle) => {
if (!article.frontmatter.image) {
console.log(`No image for article ${article.frontmatter.title}`)
return
}
console.log(`Generating og image for article ${article.frontmatter.title}`)
const output = `${cwd}/static/seo-images/blog/${article.frontmatter.id}.png`
return mergeWithBackground(article.frontmatter.image, output)
}
export const createPages: GatsbyNode["createPages"] = async ({
graphql,
actions: { createPage },
}) => {
const { data: data1 } = await graphql<{
experiencesYaml: { experiences: IExperience[] }
projectsYaml: { projects: IProject[] }
featuresYaml: { features: IFeature[] }
toolsYaml: { tools: ITool[] }
}>(`
query ProjectsQuery {
experiencesYaml {
experiences {
id
name
description
date
image {
childImageSharp {
gatsbyImageData
}
}
pageImage {
childImageSharp {
gatsbyImageData
}
}
page {
childMarkdownRemark {
frontmatter {
title
}
html
}
}
}
}
projectsYaml {
projects {
id
name
tools
features
description
image {
childImageSharp {
gatsbyImageData
}
}
page {
childMarkdownRemark {
frontmatter {
title
}
html
}
}
}
}
featuresYaml {
features {
id
name
description
color
bgColor
}
}
toolsYaml {
tools {
id
name
description
devicon
color
bgColor
iconPng {
childImageSharp {
gatsbyImageData(height: 15)
}
}
}
}
}
`)
const { data: data2 } = await graphql<{
allMarkdownRemark: { nodes: IArticle[] }
tagsYaml: { tags: ITag[] }
}>(`
query BlogQuery {
allMarkdownRemark(filter: { frontmatter: { date: { ne: null } } }) {
nodes {
frontmatter {
id
title
date
tags
image {
absolutePath
childImageSharp {
gatsbyImageData
}
}
}
html
timeToRead
excerpt
tableOfContents
}
}
tagsYaml {
tags {
id
name
color
bgColor
}
}
}
`)
const {
experiencesYaml: { experiences },
projectsYaml: { projects },
featuresYaml: { features },
toolsYaml: { tools },
} = data1!
const {
allMarkdownRemark: { nodes: articles },
tagsYaml: { tags },
} = data2!
projects.forEach(async project => {
const path = `showcase/projects/${project.id}`
createPage({
path,
component: `${cwd}/src/templates/project-page.tsx`,
context: { pagePath: path, project, features, tools },
})
})
articles.forEach(async article => {
const path = `blog/${article.frontmatter.id}`
createPage({
path,
component: `${cwd}/src/templates/article-page.tsx`,
context: { pagePath: path, article, tags },
})
})
experiences.forEach(experience => {
const path = `showcase/experiences/${experience.id}`
createPage({
path,
component: `${cwd}/src/templates/experience-page.tsx`,
context: { pagePath: path, experience },
})
})
}
export const onPreBuild: GatsbyNode["onPreBuild"] = async ({ graphql }) => {
const { data: data3 } = await graphql<{
projectsYaml: { projects: IProject[] }
}>(`
query ProjectsQuery {
projectsYaml {
projects {
id
name
image {
absolutePath
childImageSharp {
gatsbyImageData
}
}
}
}
}
`)
const {
projectsYaml: { projects },
} = data3!
const { data: data4 } = await graphql<{
allMarkdownRemark: { nodes: IArticle[] }
}>(`
query BlogQuery {
allMarkdownRemark(filter: { frontmatter: { date: { ne: null } } }) {
nodes {
frontmatter {
id
title
image {
absolutePath
childImageSharp {
gatsbyImageData
}
}
}
}
}
}
`)
const {
allMarkdownRemark: { nodes: articles },
} = data4!
const generateProjectImages = projects.map(generateImageForProject)
const generateArticleImages = articles.map(generateImageForArticle)
await Promise.all([...generateProjectImages, ...generateArticleImages])
}