-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgatsby-node.js
158 lines (141 loc) · 3.89 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
147
148
149
150
151
152
153
154
155
156
157
158
const path = require("path");
const doNotWrapLayout = [
"Index",
"/data/",
"/data/maps/",
"/news/",
"/economic/ceds/workforceanalysis/",
"/equity/",
];
//Add regex to GraphQL query to match URLs in the navigation JSON
exports.onCreateNode = async ({
node,
loadNodeContent,
actions: { createNode, createParentChildLink },
createNodeId,
createContentDigest,
}) => {
if (node.internal.type !== "nav") return;
const iterateTree = async (node, parent) => {
const child = {
...node,
id: createNodeId(node.href),
children: [],
parent: (parent && parent.id) || null,
internal: {
type: "NavItem",
contentDigest: createContentDigest(node),
description: node.href,
},
};
await createNode(child);
parent && createParentChildLink({ parent, child });
if (child.links) {
for (const grand of child.links) iterateTree(grand, child);
}
};
try {
const nodeContent = await loadNodeContent(node);
const arr = JSON.parse(nodeContent);
await iterateTree(arr, null);
} catch (error) {
console.error(error);
}
};
//Add optional fields to GraphQL
exports.createSchemaCustomization = ({ actions }) => {
const { createTypes } = actions;
const typeDefs = `
type nav implements Node {
style: String
class: String
}
type NavItem implements Node {
style: String
class: String
}
type Body {
processed: String
}
type block_content__alert_banner implements Node {
body: Body
}
`;
createTypes(typeDefs);
};
exports.onCreatePage = async ({ page, actions }) => {
const { createPage, deletePage } = actions;
deletePage(page);
const regex = page.context.path__alias
? `/^${page.context.path__alias.replace(/\//g, "/")}\/?$/i`
: `/^${page.path.replace(/\//g, "/")}\/?$/i`;
const isNewsArticle =
page.component.match(/([^\/]+$)/)[0] === "{NodeArticle.path__alias}.js";
const wrapLayout =
isNewsArticle ||
doNotWrapLayout.includes(page.internalComponentName.slice(9))
? false
: true;
return createPage({
...page,
context: {
...page.context,
regex,
layout: wrapLayout,
},
});
};
exports.createPages = async ({ graphql, actions }) => {
const { createPage } = actions;
// Example: Querying data to create dynamic pages
const result = await graphql(`
query {
allPaCoastalMunicipalitiesJson {
nodes {
slug
name
}
}
}
`);
if (result.errors) {
throw result.errors;
}
const municipalities = result.data.allPaCoastalMunicipalitiesJson.nodes;
const wrapLayout = true;
municipalities.forEach((municipality) => {
createPage({
path: `/resiliency/municipal-snapshots/${municipality.slug}/`,
component: path.resolve(`./src/templates/coastal-snapshot.js`),
context: {
slug: municipality.slug,
layout: wrapLayout,
},
});
});
};
exports.createResolvers = ({ createResolvers }) => {
const resolvers = {
menu_link_content__menu_link_content: {
entity: {
type: ["node__data_center_featured_apps"],
resolve: async (source, _, context) => {
const { entries } = await context.nodeModel.findAll({
type: "node__data_center_featured_apps",
});
return Array.from(entries).filter((node) => {
// source.link.uri = entity:node/[nid]
const [referenceType, nodeRef] = source?.link?.uri?.split(":");
const [entityType, nodeId] = nodeRef?.split("/");
// don't continue if source.link.uri doesn't follow pattern
if (referenceType !== "entity" || entityType !== "node") {
return false;
}
return node?.drupal_internal__nid?.toString() === nodeId;
});
},
},
},
};
createResolvers(resolvers);
};