-
Notifications
You must be signed in to change notification settings - Fork 1
/
gatsby-node.js
87 lines (79 loc) · 2.01 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
const path = require("path")
/**
* @type {import('gatsby').GatsbyNode['createPages']}
*/
exports.createPages = async ({ graphql, actions }) => {
const { createPage } = actions
const result = await graphql(`
query Files {
allS3Object {
nodes {
Key
Size
LastModified
}
}
}
`)
const hierarchy = {
files: [],
children: {},
lastModified: null,
}
for (const file of result.data.allS3Object.nodes) {
const path = file.Key
const parts = path.split("/")
const fileName = parts[parts.length - 1]
const lastModified = new Date(file.LastModified)
if (
path.match(/[,]/) ||
fileName === "index.html" ||
fileName.indexOf(".") < 0
) {
console.error(`Problematic filename: ${file.Key}`)
}
let cur = hierarchy
for (let i = 0; i < parts.length; i++) {
if (cur.lastModified === null || lastModified > cur.lastModified) {
cur.lastModified = lastModified
}
if (i == parts.length - 1) {
cur.files.push({
name: parts[i],
size: file.Size,
lastModified: file.LastModified,
})
} else {
if (!cur.children.hasOwnProperty(parts[i])) {
cur.children[parts[i]] = {
files: [],
children: {},
lastModified: null,
}
}
cur = cur.children[parts[i]]
}
}
}
const indexTemplate = path.resolve(`src/templates/index.js`)
const populatePages = (path, directory) => {
createPage({
path: path,
component: indexTemplate,
context: {
directoryPath: path,
files: directory.files,
directories: Object.entries(directory.children).map(
([name, child]) => ({
name,
lastModified: child.lastModified,
})
),
},
})
for (const [name, child] of Object.entries(directory.children)) {
populatePages(path + name + "/", child)
}
}
populatePages("/", hierarchy)
}