-
Notifications
You must be signed in to change notification settings - Fork 11
/
gatsby-node.ts
243 lines (211 loc) · 5.68 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
import { resolve, join } from 'path'
import { GatsbyNode } from 'gatsby'
import { execSync } from 'child_process'
import moment from 'moment'
import { toLowerCase } from 'core-fn'
import type { SiteMetaData, Locale } from './config/types'
import { exec } from 'core-fn'
import { props } from 'fonction'
import { Mdx } from '@/../graphql-types'
import { useMetaPoster, isPosts } from './scripts/register_post_list'
import { RelativeCiAgentWebpackPlugin } from '@relative-ci/agent'
import WorkerPlugin from 'worker-plugin'
import { safeGetAccessNumbers } from './scripts/access_counter'
import { safeGetLike } from './scripts/like_counter'
import LoadablePlugin from '@loadable/webpack-plugin'
const parseSlug = exec(/^\/posts\/(?<slug>.*)\//)
const createPages: GatsbyNode['createPages'] = async ({
graphql,
actions,
reporter
}) => {
const { createPage } = actions
const blogPost = resolve('./src/templates/BlogPost.tsx')
const result = await graphql(`
{
blog: allMdx(
filter: {
fields: { locale: { eq: "ja" } }
fileAbsolutePath: { regex: "//posts//" }
}
sort: { fields: frontmatter___date, order: DESC }
) {
nodes {
fields {
lowerCaseTags
}
frontmatter {
slug
}
id
}
}
media: allMdx(filter: { fileAbsolutePath: { regex: "//media//" } }) {
nodes {
frontmatter {
slug
}
}
}
}
`)
if (result.errors) {
reporter.panicOnBuild(
`There was an error loading your blog posts`,
result.errors
)
return
}
const posts = result.data.blog.nodes
const media = result.data.media.nodes
const plainText = resolve('./src/templates/PlainText.tsx')
posts.forEach(({ frontmatter, fields }, index) => {
const previousPostSlug =
index === 0 ? null : posts[index - 1].frontmatter.slug
const nextPostSlug =
index === posts.length - 1 ? null : posts[index + 1].frontmatter.slug
createPage({
path: frontmatter.slug,
component: blogPost,
context: {
previousPostSlug,
nextPostSlug,
slug: frontmatter.slug,
tags: fields.lowerCaseTags
}
})
})
media.forEach(({ frontmatter: { slug } }) => {
createPage({
path: slug,
component: plainText,
context: {
slug
}
})
})
}
const onCreateNode: GatsbyNode<Mdx>['onCreateNode'] = async ({
node,
actions,
getNode,
reporter
}) => {
const site = getNode('Site')
const { siteUrl } = site.siteMetadata as SiteMetaData
if (node.internal.type === 'Mdx' && isPosts(node.fileAbsolutePath)) {
const slugViewMap = await safeGetAccessNumbers()
const slugLikeMap = await safeGetLike()
const { date, tags, slug } = node.frontmatter!
const { locale } = node.fields!
if (!date) {
console.error('Not exists date property in frontmatter')
}
const gitAuthorTime = execSync(
`git log -1 --pretty=format:%aI ${node.fileAbsolutePath}`
).toString()
const isModified = !moment(gitAuthorTime).isSame(date, 'day')
actions.createNodeField({
node,
name: 'gitAuthorTime',
value: gitAuthorTime
})
actions.createNodeField({
node,
name: 'isModified',
value: isModified
})
actions.createNodeField({
node,
name: 'lowerCaseTags',
value: tags?.map(toLowerCase) ?? []
})
actions.createNodeField({
node,
name: 'dateByMMM',
value: moment(date).format('MMM')
})
const fullPath = makeFullPath(slug!, locale as Locale)
const url = new URL(fullPath, siteUrl).toString()
const { slug: _slug } = parseSlug(slug!)?.groups ?? { slug: '' }
if (_slug) {
actions.createNodeField({ node, name: 'dirName', value: _slug })
}
actions.createNodeField({
node,
name: 'fullPath',
value: url
})
const view = props(fullPath!, slugViewMap)
const like = props(_slug, slugLikeMap)
console.log(fullPath, view)
actions.createNodeField({
node,
name: 'view',
value: view ?? 0
})
actions.createNodeField({
node,
name: 'like',
value: like ?? 0
})
}
}
const onPostBuild: GatsbyNode['onPostBuild'] = async (buildArgs) => {
await useMetaPoster(buildArgs)
}
const isWin = process.platform === 'win32'
const loadableStatsName = 'loadable-stats-build-javascript.json'
const statsPath = join(process.cwd(), `/.cache/${loadableStatsName}`)
const onCreateWebpackConfig: GatsbyNode['onCreateWebpackConfig'] = ({
stage,
getConfig,
actions
}) => {
if (stage === 'build-javascript') {
actions.setWebpackConfig({
plugins: [new RelativeCiAgentWebpackPlugin()]
})
}
actions.setWebpackConfig({
plugins: [new WorkerPlugin()]
})
if (
stage === 'build-javascript' ||
stage === 'develop' ||
stage === 'develop-html'
) {
actions.setWebpackConfig({
plugins: [
new LoadablePlugin({
filename: statsPath,
writeToDisk: true,
outputAsset: !isWin
})
]
})
}
// // for axe ignore warning
// if (process.env.NODE_ENV !== 'production') {
// const config = getConfig()
// config.resolve.fallback = {
// crypto: false
// }
// actions.replaceWebpackConfig(config)
// }
}
const onCreateBabelConfig: GatsbyNode['onCreateBabelConfig'] = ({
actions
}) => {
actions.setBabelPlugin({ name: '@loadable/babel-plugin', options: {} })
}
const makeFullPath = (path: string, locale: Locale): string => {
return locale === 'en' ? path : join('/', locale, path)
}
export {
createPages,
onCreateNode,
onPostBuild,
onCreateWebpackConfig,
onCreateBabelConfig
}