-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgatsby-node.ts
More file actions
345 lines (339 loc) · 8.5 KB
/
gatsby-node.ts
File metadata and controls
345 lines (339 loc) · 8.5 KB
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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
import { type CreateSchemaCustomizationArgs } from 'gatsby';
export const createSchemaCustomization = ({
actions,
schema,
}: CreateSchemaCustomizationArgs) => {
const { createTypes } = actions;
const typeDefs = `
type BestInSlotJson implements Node @dontInfer {
category: String!
equipment: [BestInSlotEquipmentSlot!]!
}
type BestInSlotEquipmentSlot {
id: String!
items: [String!]!
}
type BestInSlotItem {
id: String!
icon: String
name: String
tags: [String!]
regions: [String!]
ammo: BestInSlotItem
}
type BossesJson implements Node @dontInfer {
jsonId: String!
icon: String
title: String
subtitle: String
category: String!
subcategory: String
sortingGroups: [String!]!
recommendedCombatStyle: [String!]!
requiredLevel: RequiredLevel
echoVariant: Boolean
notableDrops: [String!]!
}
type DungeonsJson implements Node @dontInfer {
jsonId: String!
title: String
subtitle: String
category: String!
sortingGroups: [String!]!
notableDrops: [String!]
}
type EquipmentJson implements Node @dontInfer {
jsonId: String!
icon: String
name: String
slot: String
tags: [String!]
regions: [String!]
regions_single: [String!]
requiredWeapon: String
ammo: EquipmentAmmo
requirements: [SkillLevel!]
}
type EquipmentAmmo {
id: String!
icon: String
}
type GearProgressionJson implements Node @dontInfer {
title: String!
categories: [String!]!
items: [GearProgressionCategoryItem!]
subcategoryItems: [GearProgressionSubcategoryItem!]
skills: [SkillLevelHighlight!]
timeline: [GearProgressionTimelineCard!]!
notes: [String!]
questMilestone: String
}
type GearProgressionCategoryItem {
id: String!
category: String!
}
type GearProgressionSubcategoryItem {
id: String!
subcategory: String!
}
type GearProgressionTimelineCard {
id: String!
icon: String!
category: String
title: String
subtitle: String
items: [String!]
subcards: [GearProgressionTimelineSubCard!]
}
type GearProgressionTimelineSubCard {
id: String!
icon: String!
title: String
subtitle: String
setupId: String
}
type GridMasterTilesJson implements Node @dontInfer {
col: String!
row: String!
type: String!
task: String
taskIcon: String
taskLink: String
reward: String
rewardDescription: String
rewardIcon: String
rewardLink: String
unconfirmed: Boolean
}
type GuildsJson implements Node @dontInfer {
jsonId: String!
icon: String
title: String
subtitle: String
caption: String
category: String!
sortingGroups: [String!]!
requiredLevel: RequiredLevel
notableDrops: [String!]
}
type ItemsJson implements Node @dontInfer {
jsonId: String!
icon: String
name: String
tags: [String!]
transmutations: [String!]
tooltip: String
}
type ItemTablesJson implements Node @dontInfer {
jsonId: String!
items: [String!]!
}
type LocationsJson implements Node @dontInfer {
jsonId: String!
name: String
region: String!
tags: [String!]
}
type MinigamesJson implements Node @dontInfer {
jsonId: String!
title: String
subtitle: String
caption: String
category: String!
sortingGroups: [String!]!
requiredLevel: RequiredLevel
notableDrops: [String!]
}
type MiscJson implements Node @dontInfer {
jsonId: String!
icon: String
title: String
subtitle: String
caption: String
category: String!
sortingGroups: [String!]!
requiredLevel: RequiredLevel
notableDrops: [String!]
}
type NpcsJson implements Node @dontInfer {
jsonId: String!
icon: String
title: String
subtitle: String
category: String!
caption: String
sortingGroups: [String!]!
requiredLevel: RequiredLevel
notableDrops: [String!]
}
type PetsJson implements Node @dontInfer {
jsonId: String!
icon: String
name: String
source: ItemSource!
tags: [String!]!
}
type QuestsJson implements Node @dontInfer {
jsonId: String!
title: String
questRequirements: [String!]
skillRequirements: [SkillLevel!]
rewards: [QuestReward!]
}
type QuestReward {
skill: String!
experience: Int!
}
type QuestOrderJson implements Node @dontInfer {
jsonId: String!
mode: String!
quests: [String!]!
}
type QuestSeriesJson implements Node @dontInfer {
jsonId: String!
link: String
title: String
caption: String
quests: [String!]!
unlocks: [String!]
}
type RaidsJson implements Node @dontInfer {
jsonId: String!
icon: String!
title: String
subtitle: String
category: String!
sortingGroups: [String!]!
recommendedCombatStyle: [String!]!
notableDrops: [String!]!
}
type RecommendedSetupsJson implements Node @dontInfer {
jsonId: String!
title: String!
strategiesLinkId: String
loadouts: [RecommendedSetupLoadout!]!
}
type RecommendedSetupLoadout {
title: String
equipment: [RecommendedSetupEquipmentItem!]!
inventory: [RecommendedSetupInventoryItem!]!
runePouch: [String!]
spell: String
spellbook: String
}
type RecommendedSetupEquipmentItem {
slot: String!
item: String!
default: String
minimum: String
}
type RecommendedSetupInventoryItem {
slot: Int!
item: String!
default: String
minimum: String
}
type RegionsJson implements Node @dontInfer {
jsonId: String!
name: String!
description: String!
badge: String!
storylines: [String!]!
skilling: [String!]!
raids: [String!]!
bosses: [String!]!
minigames: [String!]!
guilds: [String!]!
locations: [String!]!
dungeons: [String!]!
islands: [String!]!
monsters: [String!]!
npcs: [String!]!
misc: [String!]!
pets: [String!]!
resources: [String!]!
}
type SkillingJson implements Node @dontInfer {
jsonId: String!
icon: String
url: String
title: String
subtitle: String
caption: String
category: String!
sortingGroups: [String!]!
requiredLevel: RequiredLevel
notableDrops: [String!]
}
type SkillLevel {
skill: String!
level: Int!
}
type SkillLevelHighlight {
skill: String!
level: Int!
highlight: Boolean
}
type SlayerMastersJson implements Node @dontInfer {
jsonId: String!
image: String!
region: String!
requiredCombatLevel: Int
}
type SlayerMonstersJson implements Node @dontInfer {
jsonId: String!
icon: String
title: String
subtitle: String
caption: String
category: String!
sortingGroups: [String!]!
requiredCombatLevel: Int
requiredSlayerLevel: Int
slayerMasters: [String!]!
locations: [String!]!
notableDrops: [String!]
hideFromMenu: Boolean
}
type SpellsJson implements Node @dontInfer {
jsonId: String!
title: String
subtitle: String
caption: String
category: String!
spellbook: String!
requiredLevel: RequiredLevel!
sortingGroups: [String!]!
notableDrops: [String!]
}
`;
const coerceItemSource = (value: any) => {
if (Array.isArray(value) || typeof value === 'string') {
return value;
} else {
throw new Error(
'ItemSource cannot represent value: ' + JSON.stringify(value),
);
}
};
const coerceRequiredLevel = (value: any) => {
if (Array.isArray(value) || typeof value === 'number') {
return value;
} else {
throw new Error(
'RequiredLevel cannot represent value: ' + JSON.stringify(value),
);
}
};
const ItemSource = schema.buildScalarType({
name: 'ItemSource',
serialize: coerceItemSource,
parseValue: coerceItemSource,
});
const RequiredLevel = schema.buildScalarType({
name: 'RequiredLevel',
serialize: coerceRequiredLevel,
parseValue: coerceRequiredLevel,
});
createTypes([typeDefs, ItemSource, RequiredLevel]);
};