-
Notifications
You must be signed in to change notification settings - Fork 73
/
gatsby-node.js
94 lines (84 loc) · 2.54 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
const path = require('path')
const fetch = (...args) => import('node-fetch').then(({ default: fetch }) => fetch(...args));
exports.onCreateNode = ({ node, actions }) => {
const { createNodeField } = actions
if (node.internal.type === 'MarkdownRemark') {
const slug = path.basename(node.fileAbsolutePath, '.md')
createNodeField({
node,
name: 'slug',
value: slug
})
}
}
exports.onCreateWebpackConfig = ({ actions }) => {
actions.setWebpackConfig({
resolve: {
fallback: {
stream: require.resolve("stream-browserify"),
http: require.resolve("stream-http"),
https: require.resolve("https-browserify"),
timers: require.resolve("timers-browserify"),
url: require.resolve("url/"),
},
},
});
};
exports.onCreatePage = async ({ page, reporter, actions }) => {
if (page.path === '/') {
try {
const response = await fetch(
'https://api.eclipse.org/adopters/projects/ecd.theia', {
method: 'GET',
headers: {
accept: 'application/json',
}
})
const responseJson = await response.json()
const adopters = responseJson[0].adopters
actions.deletePage(page)
actions.createPage({
...page,
context: {
...page.context,
adopters,
},
})
} catch (error) {
reporter.panic(
'Failed to fetch Theia Adopters from "api.eclipse.org"',
error
)
}
}
}
exports.createPages = async ({ graphql, reporter, actions }) => {
const { createPage } = actions
const DocsTemplate = path.resolve('./src/templates/doc.js')
const result = await graphql(`
query {
allMarkdownRemark {
edges {
node {
fields {
slug
}
}
}
}
}
`)
if(result.errors) {
reporter.panic("Failed to create Docs.", result.errors)
}
const docs = result.data.allMarkdownRemark.edges
docs.forEach((doc) => {
createPage({
component: DocsTemplate,
path: `/docs/${doc.node.fields.slug}`,
context: {
slug: doc.node.fields.slug
}
})
})
}