-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-node.ts
89 lines (76 loc) · 1.71 KB
/
gatsby-node.ts
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
import path from 'path';
import { GatsbyNode } from 'gatsby';
import { createFilePath } from 'gatsby-source-filesystem';
export const onCreateWebpackConfig = ({ actions }) => {
actions.setWebpackConfig({
resolve: {
alias: {
'@': path.resolve(__dirname, 'src'),
},
},
});
};
export const createSchemaCustomization: GatsbyNode['createSchemaCustomization'] = ({ actions }) => {
actions.createTypes(`
type PagesQuery {
allMdx: AllMdx!
}
type PageQuery {
mdx: Nodes!
}
type AllMdx {
nodes: [Nodes!]!
}
type Nodes {
frontmatter: Frontmatter!
}
type Frontmatter {
type: String!
title: String!
tags: [String!]!
}
`);
};
export const onCreateNode = ({ node, actions, getNode }) => {
const { createNodeField } = actions;
if (node.internal.type === `Mdx`) {
const slug = createFilePath({ node, getNode });
createNodeField({
node,
name: `slug`,
value: slug,
});
}
};
export const createPages = async ({ graphql, actions }) => {
const { createPage } = actions;
const result = await graphql(`
query Node {
allMdx {
nodes {
fields {
slug
}
body
frontmatter {
type
title
}
internal {
contentFilePath
}
}
}
}
`);
const postTemplate = path.resolve(__dirname, `src/pages/post.tsx`);
result.data.allMdx.nodes.forEach((node) => {
createPage({
path: node.fields.slug,
component: `${postTemplate}?__contentFilePath=${node.internal.contentFilePath}`,
context: {
slug: node.fields.slug,
},
});
});
};