forked from AelinXYZ/AELIPs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-node.js
136 lines (127 loc) · 3.04 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
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 {
aelip
accp
title
author
type
proposal
implementor
release
discussions_to
created
updated
status
}
`
const allAelipsQuery = `
${Frontmatter}
query allAelips {
allMarkdownRemark(
filter: {
fileAbsolutePath: { regex: "/aelips/" }
frontmatter: { aelip: { ne: null } }
}
) {
group(field: frontmatter___status) {
fieldValue
nodes {
frontmatter {
...Frontmatter
}
md: rawMarkdownBody
html
}
}
}
}
`
const allAccpQuery = `
${Frontmatter}
query allAccps {
allMarkdownRemark(
filter: {
fileAbsolutePath: { regex: "/accp/" }
frontmatter: { accp: { ne: null } }
}
) {
group(field: frontmatter___status) {
fieldValue
nodes {
frontmatter {
...Frontmatter
}
md: rawMarkdownBody
html
}
}
}
}
`
exports.onPostBuild = async ({ graphql }) => {
const allAelips = await graphql(allAelipsQuery)
const allAccp = await graphql(allAccpQuery)
const aelipsPath = './public/api/aelips'
const accpPath = './public/api/accp'
;[
{ path: aelipsPath, result: allAelips },
{ path: accpPath, result: allAccp },
].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
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)
}