-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-node.js
84 lines (78 loc) · 1.82 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
/**
* Implement Gatsby's Node APIs in this file.
*
* See: https://www.gatsbyjs.org/docs/node-apis/
*/
const path = require('path');
const express= require('express');
// Render static html with `gatsby develop`, not only `gatsby build & gatsby serve`
exports.onCreateDevServer = ({ app }) => {
app.use(express.static('public'))
}
// Initialize Semantic UI theme
exports.onCreateWebpackConfig = ({ actions }) => {
actions.setWebpackConfig({
resolve: {
alias: {
'../../theme.config$': path.join(__dirname, 'src/semantic/theme.config'),
},
},
});
};
// Dynamically create pages from Airtable data
exports.createPages = async ({ graphql, actions: { createPage } }) => {
const result = await graphql(`
{
boards: allAirtable(filter: {
table: {eq: "Boards"},
data: {Done: {eq: true}}
}) {
totalCount
edges {
node {
data {
Name
Slug
}
}
}
}
people: allAirtable(filter: {
table: {eq: "People"},
data: {Done__from_Boards___from_Positions_: {eq: true}}
}) {
totalCount
edges {
node {
data {
Name
Slug
}
}
}
}
}
`)
// Make a page for every "done" board
let boards = result.data.boards.edges.map(e => e.node.data)
boards.forEach(b => {
createPage({
path: `/board/${b.Slug}`,
component: path.resolve("./src/templates/board-page.js"),
context: {
name: b.Name
},
})
})
// Make a page for every "done" person
let people = result.data.people.edges.map(e => e.node.data)
people.forEach(p => {
createPage({
path: `/person/${p.Slug}`,
component: path.resolve("./src/templates/person-page.js"),
context: {
name: p.Name
},
})
})
}