Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
17 lines
688 B
Text
17 lines
688 B
Text
// ResourceNamespace allows you to create nested resources, i.e. `stripe.issuing.cards`.
|
|
// It also works recursively, so you could do i.e. `stripe.billing.invoicing.pay`.
|
|
function ResourceNamespace(stripe, resources) {
|
|
for (const name in resources) {
|
|
if (!Object.prototype.hasOwnProperty.call(resources, name)) {
|
|
continue;
|
|
}
|
|
const camelCaseName = name[0].toLowerCase() + name.substring(1);
|
|
const resource = new resources[name](stripe);
|
|
this[camelCaseName] = resource;
|
|
}
|
|
}
|
|
export function resourceNamespace(namespace, resources) {
|
|
return function (stripe) {
|
|
return new ResourceNamespace(stripe, resources);
|
|
};
|
|
}
|