-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-node.js
154 lines (139 loc) · 3.73 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
const ARTICLE_SLUG = 'articles';
const PROJECT_SLUG = 'projects';
const {
createFilePath
} = require('gatsby-source-filesystem');
const path = require('path');
exports.onCreateNode = (props) => {
const {
actions: {
createNodeField
},
getNode,
node,
node: {
internal: {
type: internalNodeType
}
}
} = props;
if (internalNodeType === 'MarkdownRemark') {
const slug = createFilePath({
basePath: 'pages',
getNode,
node
});
createNodeField({
name: 'slug',
node,
value: slug
});
}
};
exports.createPages = async (props) => {
const {
actions: {
createPage
},
graphql
} = props;
const {
data: {
allMarkdownRemark: {
edges
}
}
} = await graphql(`
query {
allMarkdownRemark {
edges {
node {
fields {
slug
}
}
}
}
}
`);
edges.forEach((nodeData) => {
const {
node: {
fields: nodeFields
}
} = nodeData;
const convertSlugToPathName = (slug) => slug.toLowerCase()
.replace(/[^a-z0-9]+/g, '-')
.replace(/(^-|-$)+/g, '');
if (nodeFields && Object.keys(nodeFields).length) {
const {
slug
} = nodeFields;
const isArticleSlug = slug.includes(ARTICLE_SLUG);
const isProjectSlug = slug.includes(PROJECT_SLUG);
// Create pages for projects.
if (isProjectSlug) {
const pageName = slug.replace(PROJECT_SLUG, '').replace(/^\//, '');
createPage({
component: path.resolve('./src/connected/ProjectTemplateConnected.js'),
context: {
slug
},
path: `/${PROJECT_SLUG}/${convertSlugToPathName(pageName)}`
});
}
// Create pages for articles.
if (isArticleSlug) {
const pageName = slug.replace(ARTICLE_SLUG, '').replace(/^\//, '');
createPage({
component: path.resolve('./src/connected/ArticleTemplateConnected.js'),
context: {
slug
},
path: `/${ARTICLE_SLUG}/${convertSlugToPathName(pageName)}`
});
}
}
});
};
exports.createSchemaCustomization = ({
actions
}) => {
const {
createTypes
} = actions;
const typeDefs = `
type MarkdownRemark implements Node {
frontmatter: Frontmatter
}
type Frontmatter {
heroImageBlock: HeroImageBlock
pageSEO: PageSEO
}
type HeroImageBlock {
citation: Citation
imageAlt: String
imageOpacity: Int
imageTitle: String
imageAlignment: String
}
type Citation {
authorLink: String
authorName: String
hostingSiteLink: String
hostingSiteName: String
isCited: Boolean
}
type PageSEO {
pageAuthor: String
pageDescription: String
pageImage: String
pageKeywords: String
pagePostingTitle: String
pageSiteURL: String
pageTitle: String
pageType: String
}
`;
createTypes(typeDefs);
};