-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-node.js
90 lines (73 loc) · 2.08 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
/**
* Implement Gatsby's Node APIs in this file.
*
* See: https://www.gatsbyjs.org/docs/node-apis/
*/
async function createSnippetPages(graphql, actions, reporter) {
const { createPage, createPageDependency } = actions;
const result = await graphql(`
{
allSanityBit(filter: { slug: { current: { ne: null } } }) {
edges {
node {
id
publishedAt
slug {
current
}
}
}
}
}
`);
if (result.errors) throw result.errors;
const snippetEdges = (result.data.allSanityBit || {}).edges || [];
snippetEdges.forEach((edge) => {
const { id, slug = {} } = edge.node;
// const dateSegment = format(publishedAt, 'YYYY/MM');
const path = `/bits/${slug.current}/`;
reporter.info(`Creating snippet page: ${path}`);
createPage({
path,
component: require.resolve('./src/templates/bit.jsx'),
context: { id },
});
createPageDependency({ path, nodeId: id });
});
}
async function createBlogPostPages(graphql, actions, reporter) {
const { createPage, createPageDependency } = actions;
const result = await graphql(`
{
allSanityPost(filter: { slug: { current: { ne: null } } }) {
edges {
node {
id
publishedAt
slug {
current
}
}
}
}
}
`);
if (result.errors) throw result.errors;
const postEdges = (result.data.allSanityPost || {}).edges || [];
postEdges.forEach((edge) => {
const { id, slug = {} } = edge.node;
// const dateSegment = format(publishedAt, 'YYYY/MM');
const path = `/posts/${slug.current}/`;
reporter.info(`Creating blog post page: ${path}`);
createPage({
path,
component: require.resolve('./src/templates/post.jsx'),
context: { id },
});
createPageDependency({ path, nodeId: id });
});
}
exports.createPages = async ({ graphql, actions, reporter }) => {
await createBlogPostPages(graphql, actions, reporter);
await createSnippetPages(graphql, actions, reporter);
};