-
Notifications
You must be signed in to change notification settings - Fork 1
/
gatsby-node.js
191 lines (175 loc) · 5.04 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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
const _ = require('lodash')
const path = require('path')
const { createFilePath } = require('gatsby-source-filesystem')
const { fmImagesToRelative } = require('gatsby-remark-relative-images')
exports.createPages = ({ boundActionCreators, graphql }) => {
const { createPage } = boundActionCreators
return graphql(`
{
allMarkdownRemark(limit: 1000) {
edges {
node {
id
fields {
slug
}
frontmatter {
tags
templateKey
}
}
}
}
}
`).then(result => {
if (result.errors) {
result.errors.forEach(e => console.error(e.toString()))
return Promise.reject(result.errors)
}
const posts = result.data.allMarkdownRemark.edges
posts.forEach(edge => {
const id = edge.node.id
createPage({
path: edge.node.fields.slug,
tags: edge.node.frontmatter.tags,
component: path.resolve(
`src/templates/${String(edge.node.frontmatter.templateKey)}.js`
),
// additional data can be passed via context
context: {
id,
},
})
})
// Tag pages:
let tags = []
// Iterate through each post, putting all found tags into `tags`
posts.forEach(edge => {
if (_.get(edge, `node.frontmatter.tags`)) {
tags = tags.concat(edge.node.frontmatter.tags)
}
})
// Eliminate duplicate tags
tags = _.uniq(tags)
// Make tag pages
tags.forEach(tag => {
const tagPath = `/tags/${_.kebabCase(tag)}/`
createPage({
path: tagPath,
component: path.resolve(`src/templates/tags.js`),
context: {
tag,
},
})
})
})
}
exports.onCreateNode = ({ node, boundActionCreators, getNode }) => {
fmImagesToRelative(node)
const { createNodeField } = boundActionCreators
if (node.internal.type === `MarkdownRemark`) {
const value = createFilePath({ node, getNode })
createNodeField({
name: `slug`,
node,
value,
})
}
}
// link collections
exports.sourceNodes = ({ boundActionCreators, getNodes, getNode }) => {
const { createNodeField } = boundActionCreators
const nodes = getNodes()
// link scenes to collections
// first, build an index
const scenesByPlaylistIndex = {}
// Playlist -> Scenes Index build
nodes
.filter(
node =>
node.internal.type === `MarkdownRemark` &&
!!node.frontmatter &&
node.frontmatter.templateKey === `playlist`
)
.forEach(playlist => {
// console.log(playlist)
if (!!playlist.frontmatter.scenes) {
playlist.frontmatter.scenes.forEach(sceneLink => {
// console.log(sceneLink)
const match = nodes.find(
scene =>
scene.internal.type === `MarkdownRemark` &&
!!scene.frontmatter &&
scene.frontmatter.templateKey === `scene` &&
scene.frontmatter.title === sceneLink.title
)
if (!!match) {
// console.log(match)
if (!scenesByPlaylistIndex[playlist.id])
scenesByPlaylistIndex[playlist.id] = []
scenesByPlaylistIndex[playlist.id].push(match.id)
}
})
}
})
// next, use the index to create the links
Object.entries(scenesByPlaylistIndex).forEach(([playlistId, sceneIds]) => {
// link in graphql
createNodeField({
node: getNode(playlistId),
name: `scenes`,
value: sceneIds,
})
})
// link scenes/playlists to screens
// nodes
// .filter(
// node =>
// node.internal.type === `MarkdownRemark` &&
// !!node.frontmatter &&
// node.frontmatter.templateKey === `screen`
// )
// .forEach(screen => {
// // console.log(screen)
// if (!!screen.frontmatter.scene) {
// // console.log('checking scene')
// const match = nodes.find(
// scene =>
// scene.internal.type === `MarkdownRemark` &&
// !!scene.frontmatter &&
// scene.frontmatter.templateKey === `scene` &&
// scene.frontmatter.title === screen.frontmatter.scene
// )
//
// if (!!match) {
// // console.log(match)
// // link in graphql
// createNodeField({
// node: screen,
// name: `scene`,
// value: match.id,
// })
// }
// }
//
// if (!!screen.frontmatter.playlist) {
// const match = nodes.find(
// playlist =>
// playlist.internal.type === `MarkdownRemark` &&
// !!playlist.frontmatter &&
// playlist.frontmatter.templateKey === `playlist` &&
// playlist.frontmatter.title === screen.frontmatter.playlist
// )
//
// if (!!match) {
// // console.log(match)
// // link in graphql
// createNodeField({
// node: screen,
// name: `playlist`,
// value: match.id,
// })
// }
// }
// })
}