-
Notifications
You must be signed in to change notification settings - Fork 21
/
gatsby-node.js
280 lines (262 loc) · 6.58 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
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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
const FilterWarningsPlugin = require('webpack-filter-warnings-plugin');
const slugify = require('slugify');
const fmtURI = (uri, isSlugify) =>
isSlugify
? slugify(uri, { lower: true, remove: /[*+~.()'"!:@]/g })
: uri.toLocaleLowerCase().replace(/ /g, '+');
exports.createPages = async function ({ actions, graphql }) {
const { data } = await graphql(`
query {
file(base: { eq: "rgd.json" }) {
childrenDiscussionsJson {
website {
description
home
title
}
}
}
allDiscussionsJson {
edges {
previous {
node {
title
number
}
}
next {
node {
title
number
}
}
node {
node {
title
number
category {
name
emoji
description
isAnswerable
}
labels {
edges {
node {
id
name
color
description
}
}
}
}
}
}
}
}
`);
const websiteData = data?.file?.childrenDiscussionsJson?.[0]?.website;
let categoryMap = new Map();
let labelsMap = new Map();
let labelsColorMap = {};
let nlen = 0;
data?.allDiscussionsJson?.edges?.forEach(({ previous, next, node }) => {
if (!node) return;
const curr = node.node;
const number = curr?.number;
if (!number) return;
// number length
const _nlen = `${number}`.length;
if (nlen < _nlen) nlen = _nlen;
// create issues pages
actions.createPage({
path: `issues/${number}`,
component: require.resolve(`./src/templates/issues.tsx`),
context: { number, previous: previous?.node, next: next?.node },
});
// category
const category = curr?.category;
if (category && !categoryMap.get(category?.name)) {
categoryMap.set(category?.name, category);
}
// labels
const labels = curr?.labels?.edges;
labels &&
labels.forEach((label) => {
if (!labelsMap.get(label.node.name)) {
labelsMap.set(label.node.name, label.node);
labelsColorMap[label.node.name] = label.node.color;
}
});
});
// create category pages
for (let [key, value] of categoryMap.entries()) {
actions.createPage({
path: `category/${fmtURI(key, true)}`,
component: require.resolve(`./src/templates/category.tsx`),
context: { category: value, name: key, nlen },
});
}
// create labels pages
for (let [key, value] of labelsMap.entries()) {
actions.createPage({
path: `labels/${fmtURI(key)}`,
component: require.resolve(`./src/templates/labels.tsx`),
context: { labels: value, name: key, nlen },
});
}
// categories page
actions.createPage({
path: `category`,
component: require.resolve(`./src/templates/nav-category.tsx`),
context: { categoryList: Array.from(categoryMap.values()) },
});
// labels page
actions.createPage({
path: `labels`,
component: require.resolve(`./src/templates/nav-labels.tsx`),
context: { labelsList: Array.from(labelsMap.values()) },
});
if (websiteData?.home === 'issues-labels') {
// create home pages
actions.createPage({
path: `/`,
component: require.resolve(`./src/templates/labels-category.tsx`),
context: { colorMap: labelsColorMap },
});
// create archives pages
actions.createPage({
path: `/archives`,
component: require.resolve(`./src/templates/archives.tsx`),
});
} else {
// create home pages
actions.createPage({
path: `/`,
component: require.resolve(`./src/templates/archives.tsx`),
});
}
};
// Fix warn chunk commons [mini-css-extract-plugin] error in Gatsby JS
exports.onCreateWebpackConfig = ({ actions }) => {
actions.setWebpackConfig({
plugins: [
new FilterWarningsPlugin({
exclude:
/mini-css-extract-plugin[^]*Conflicting order. Following module has been added:/,
}),
],
});
};
const initFields = (fields) =>
fields.reduce((a, b) => {
let _type = 'String!';
let _field = b;
let _val = '';
if (Array.isArray(b)) {
_field = b[0];
_type = b[1];
if (b[1] === '[String]!') _val = [];
if (b[1] === 'Boolean!') _val = false;
}
return {
...a,
[_field]: {
type: _type,
resolve: (v) => v[_field] || _val,
},
};
}, {});
exports.createSchemaCustomization = ({ actions, schema }) => {
const { createTypes } = actions;
const typeDefs = [
`type DiscussionsJsonNode {
category: Category
labels: LabelsConnection
}`,
`type Category {
name: String!
emoji: String!
description: String!
isAnswerable: Boolean!
}`,
`type LabelsConnection {
edges: [LabelsEdge]
}`,
`type LabelsEdge {
node: Labels
}`,
`type Labels {
id: String
name: String
color: String
description: String
}`,
`type IssuesJson implements Node {
labels: LabelsConnection
author: Author
comments: CommentsConnection
category: Category
upvoteCount: Int
}`,
`type CommentsConnection {
edges: [CommentsEdge]
}`,
`type CommentsEdge {
node: IssuesJsonCommentsEdgesNode
}`,
`type IssuesJsonCommentsEdgesNode {
id: String!
bodyHTML: String!
author: Author!
replies: RepliesConnection
}`,
`type RepliesConnection {
edges: [RepliesEdge]
}`,
`type RepliesEdge {
node: Replies
}`,
`type Replies {
id: String!
bodyHTML: String!
author: Author!
}`,
`type Author {
login: String!
avatarUrl: String!
url: String!
}`,
schema.buildObjectType({
name: 'DiscussionsJson',
fields: {
...initFields([
'owner',
'repo',
'issues_owner',
'issues_repo',
'dis_owner',
'dis_repo',
'cname',
'type',
]),
website: 'RgdWebsite',
},
interfaces: ['Node'],
}),
schema.buildObjectType({
name: 'RgdWebsite',
fields: initFields([
'title',
'description',
'home',
'built_date',
['home_layout', '[String]!'],
['label_category', '[String]!'],
['label_level', '[String]!'],
]),
}),
];
createTypes(typeDefs);
};