forked from Synthetixio/SIPs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-node.js
137 lines (128 loc) · 3.03 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
const fs = require('fs')
const kebabCase = require('lodash/kebabCase')
const statuses = require('./ci/statuses')
const kebabStatuses = statuses.map(kebabCase)
const Frontmatter = `
fragment Frontmatter on MarkdownRemarkFrontmatter {
sip
sccp
title
author
network
type
proposal
implementor
release
created
updated
status
}
`
const allSipsQuery = `
${Frontmatter}
query allSips {
allMarkdownRemark(
filter: {
fileAbsolutePath: { regex: "/sips/" }
frontmatter: { sip: { ne: null } }
}
) {
group(field: frontmatter___status) {
fieldValue
nodes {
frontmatter {
...Frontmatter
}
md: rawMarkdownBody
html
}
}
}
}
`
const allSccpQuery = `
${Frontmatter}
query allSips {
allMarkdownRemark(
filter: {
fileAbsolutePath: { regex: "/sccp/" }
frontmatter: { sccp: { ne: null } }
}
) {
group(field: frontmatter___status) {
fieldValue
nodes {
frontmatter {
...Frontmatter
}
md: rawMarkdownBody
html
}
}
}
}
`
exports.onPostBuild = async ({ graphql }) => {
const allSips = await graphql(allSipsQuery)
const allSccp = await graphql(allSccpQuery)
const sipsPath = './public/api/sips'
const sccpPath = './public/api/sccp'
;[
{ path: sipsPath, result: allSips },
{ path: sccpPath, result: allSccp },
].forEach(({ path, result }) => {
if (!fs.existsSync(path)) fs.mkdirSync(path, { recursive: true })
// Initialize all statuses with empty array
kebabStatuses.forEach((status) =>
fs.writeFileSync(`${path}/${status}.json`, JSON.stringify([])),
)
result.data.allMarkdownRemark.group.forEach((group) => {
const status = kebabCase(group.fieldValue)
const data = group.nodes.map(({ frontmatter, ...node }) => ({
...frontmatter,
...node,
}))
fs.writeFileSync(`${path}/${status}.json`, JSON.stringify(data))
})
})
}
exports.createSchemaCustomization = ({ actions, schema }) => {
const { createTypes } = actions
const typeDefs = [
`
type MarkdownRemarkFrontmatter implements Node {
title: String!
type: String
network: String
status: String!
author: String!
implementor: String
proposal: String
release: String
created: Date
updated: Date
}
`,
// schema.buildObjectType({
// name: 'Frontmatter',
// fields: {
// tags: {
// type: 'String!',
// resolve(source, args, context, info) {
// const { tags } = source
// console.log(source)
// switch (source[info.fieldName]) {
// case 'type':
// return 'TBD'
// case 'implementor':
// return 'TBD'
// default:
// return tags
// }
// },
// },
// },
// }),
]
createTypes(typeDefs)
}