forked from CivicActions/civicactions.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-node.js
146 lines (136 loc) · 3.79 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
138
139
140
141
142
143
144
145
146
/**
* Implement Gatsby's Node APIs in this file.
*
* See: https://www.gatsbyjs.org/docs/node-apis/
*/
const path = require(`path`)
const createPaginatedPages = require(`gatsby-paginate`)
exports.createPages = ({ actions, graphql }) => {
const { createPage } = actions
const { createRedirect } = actions
createRedirect({
fromPath: "/distributed-government",
toPath: "https://distributedgov.com/",
isPermanent: true,
redirectInBrowser: true,
})
createRedirect({
fromPath: "/a11y-iaaf",
toPath:
"https://medium.com/civicactions/4-ways-to-improve-government-accessibility-through-open-source-8e20fabc7281",
isPermanent: true,
redirectInBrowser: true,
})
const caseStudyTemplate = path.resolve(`src/templates/caseStudyTemplate.js`)
const caseStudyTemplate2 = path.resolve(`src/templates/caseStudyTemplate2.js`)
const teamMemberTemplate = path.resolve(`src/templates/teamMemberTemplate.js`)
const generalTemplate = path.resolve(`src/templates/generalTemplate.js`)
const pressSubPageTemplate = path.resolve(
`src/templates/pressSubPageTemplate.js`
)
return graphql(`
{
allMarkdownRemark(sort: { fields: [frontmatter___date], order: DESC }) {
edges {
node {
fields {
slug
}
frontmatter {
path
type
title
name
role
manager
date
link_text
publication
website
redirect_from
weight
}
html
}
}
}
}
`).then(result => {
if (result.errors) {
return Promise.reject(result.errors)
}
const pressNodes = result.data.allMarkdownRemark.edges.filter(
({ node }) => node.frontmatter.type === `press`
)
createPaginatedPages({
edges: pressNodes,
createPage: createPage,
pageTemplate: `src/templates/press.js`,
pageLength: 5, // This is optional and defaults to 10 if not used
pathPrefix: `press`,
buildPath: (index, pathPrefix) =>
index > 1 ? `${pathPrefix}/${index}` : `/${pathPrefix}`,
})
result.data.allMarkdownRemark.edges.forEach(({ node }) => {
switch (node.frontmatter.type) {
case `team`:
createPage({
path: node.frontmatter.path,
component: teamMemberTemplate,
context: {},
})
break
case `case-study`:
createPage({
path: node.frontmatter.path,
component: caseStudyTemplate,
})
break
case `case-study-2`:
createPage({
path: node.frontmatter.path,
component: caseStudyTemplate2,
})
break
case `press-sub-page`:
createPage({
path: node.frontmatter.path,
component: pressSubPageTemplate,
context: {},
})
break
default:
createPage({
path: node.frontmatter.path,
component: generalTemplate,
})
}
})
})
}
// This is to be able to query page slugs. For creating a dynamic menu in the future
exports.onCreateNode = ({ node, getNode, boundActionCreators }) => {
const { createNodeField } = boundActionCreators
if (node.internal.type === `SitePage`) {
createNodeField({
node,
name: `slug`,
value: node.path,
})
}
if (node.internal.type === `MarkdownRemark`) {
createNodeField({
name: `slug`,
node,
value: node.frontmatter.path,
})
}
}
// For easier imports
exports.onCreateWebpackConfig = ({ stage, actions }) => {
actions.setWebpackConfig({
resolve: {
modules: [path.resolve(__dirname, `src`), `node_modules`],
},
})
}