-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-node.js
113 lines (102 loc) · 1.96 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
const path = require('path');
exports.createPages = async ({graphql, actions}) => {
const {createPage} = actions;
// --- Home ---
createPage({
path: '/',
component: path.resolve('src/templates/home.jsx')
});
// --- Worldmap ---
createPage({
path: '/worldmap',
component: path.resolve('src/templates/map.jsx')
});
const pages = await graphql(`
{
allPrismicCategory {
edges {
node {
uid
}
}
}
allPrismicPicture {
edges {
node {
uid
}
}
}
allPrismicSeries {
edges {
node {
uid
}
}
}
allPrismicTags {
edges {
node {
uid
}
}
}
}
`);
// --- Pictures ---
createPage({
path: '/picture',
component: path.resolve('src/templates/pictures.jsx')
});
for (const edge of pages.data.allPrismicPicture.edges) {
createPage({
path: `/picture/${edge.node.uid}`,
component: path.resolve('src/templates/picture.jsx'),
context: {
uid: edge.node.uid
}
});
}
// --- Categories ---
createPage({
path: '/category',
component: path.resolve('src/templates/categories.jsx')
});
for (const edge of pages.data.allPrismicCategory.edges) {
createPage({
path: `/category/${edge.node.uid}`,
component: path.resolve('src/templates/category.jsx'),
context: {
uid: edge.node.uid
}
});
}
// --- Series ---
createPage({
path: '/series',
component: path.resolve('src/templates/series-all.jsx')
});
for (const edge of pages.data.allPrismicSeries.edges) {
createPage({
path: `/series/${edge.node.uid}`,
component: path.resolve('src/templates/series.jsx'),
context: {
uid: edge.node.uid
}
});
}
// --- Tags ---
createPage({
path: '/tag',
component: path.resolve('src/templates/tags.jsx')
});
for (const edge of pages.data.allPrismicTags.edges) {
createPage({
path: `/tag/${edge.node.uid}`,
component: path.resolve('src/templates/tag.jsx'),
context: {
uid: edge.node.uid
}
});
}
};