This repository was archived by the owner on Jun 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathgatsby-node.js
66 lines (58 loc) · 1.42 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
const path = require("path")
const slug = require("slug")
exports.onCreateNode = ({ node, actions, getNode }) => {
const { createNodeField } = actions
// Add slug for page generation.
if (node.internal.type === "StripePrice") {
const value = slug(node.product.name, slug.defaults.modes["rfc3986"])
createNodeField({
node,
name: "slug",
value,
})
}
}
exports.createPages = async ({ graphql, actions }) => {
const { createPage } = actions
return graphql(`
{
allStripePrice {
edges {
node {
fields {
slug
}
product {
id
name
}
}
}
}
}
`).then(result => {
if (result.errors) {
Promise.reject(result.errors)
}
// Create product pages
const products = {}
result.data.allStripePrice.edges.forEach(({ node }) => {
products[node.product.id] = node.fields.slug
})
const productTemplate = path.resolve("src/templates/ProductTemplate.js")
Object.entries(products).forEach(([id, slug]) => {
createPage({
path: "buy/" + slug,
component: productTemplate,
context: { id },
})
})
})
}
// Allow client-only routes on /admin/*
exports.onCreatePage = async ({ page, actions }) => {
if (page.path.match(/^\/admin/)) {
page.matchPath = "/admin/*"
actions.createPage(page)
}
}