-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-node.js
75 lines (72 loc) · 1.85 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
exports.createPages = async ({ graphql, actions }) => {
const { createPage } = actions;
// Query your data to get the list of devices
const result = await graphql(`
query {
allFile {
nodes {
base
childDescriptorsJson {
endpoints {
endpointId
endpointTypeIndex
endpointTypeName
profileId
}
endpointTypes {
name
clusters {
attributes {
code
maxInterval
minInterval
reportable
reportableChange
type
defaultValue
included
bounded
side
singleton
storageOption
name
}
commands {
code
incoming
name
outgoing
source
}
code
define
enabled
name
side
}
deviceTypeCode
deviceTypeProfileId
deviceTypeName
}
}
}
}
}
`);
if (result.errors) {
throw result.errors;
}
// Iterate over each device and create a page for it
const device_files = result.data.allFile.nodes;
device_files.forEach((device_file, index) => {
device_file_without_extension = device_file.base.replace(".json", "");
createPage({
path: `/device/${device_file_without_extension}`,
component: require.resolve("./src/templates/DeviceTemplate.js"),
context: {
deviceData: device_file,
product_name: device_file_without_extension,
},
});
});
};