Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
@goodhood/chargebee
Advanced tools
@goodhood/chargebee
React chargebee components (Chargebee SDK https://www.chargebee.com/checkout-portal-docs/api.html)
npm i @goodhood/chargebee
Install peer dependencies
npm i react // v16.x.x
npm i react-load-script // v0.x.x
npm i prop-types // v15.x.x
npm i @babel/runtime // v7.x.x
import {
Action,
PortalLink,
Checkout,
SECTION_INVOICES,
SECTION_EDIT_SUBSCRIPTION,
SECTION_BILLING_ADDRESS,
} from '@goodhood/chargebee';
import { Action } from '@goodhood/chargebee';
const App = () => (
<Action
{/* Your site name */}
site="site-name"
{/* If true onCall won't be called on click */}
disabled={true || false}
{/* Will be called on element click. Receives chargebee instance as an argument */}
onCall={(chargebeeInstance, ChargebeeAPI) => {}}
/>
);
import { PortalLink, SECTION_INVOICES } from '@goodhood/chargebee';
const App = () => (
// Inherits Action component props
<PortalLink
{/* Section in the customer portal */}
section={SECTION_INVOICES}
{/* Should return a promise that resolves a portal session object */}
onSessionGet={() => Promise.resolve({ id: '', token: '' })}
{/* Will be called once the portal is closed by the end user */}
onClose={() => {}}
/>
);
import { Checkout } from '@goodhood/chargebee';
const App = () => (
// Inherits Action component props
<Checkout
{/* Should return a promise, that will resolve a hosted page object */}
onHostedPageGet={() => Promise.resolve({ id: '', url: '' })}
{/* Will be called once the checkout page is loaded */}
onLoaded={() => {}}
{/* Will be called everytime an user navigates from one step to another.
* String values for currentStep see cb-checkout at
* {@link https://www.chargebee.com/docs/2.0/gtm.html} */}
onStep={(currentStep) => {}}
{/* This function will be called once the portal is closed by the end user */}
onClose={() => {}}
{/* Will be called when a successful checkout happens. */}
onSuccess={() => {}}
{/* Will be called if the promise passed in onHostedPageGet causes an error */}
onError={() => {}}
/>
);
config/local.js
file (see config/default.js
)npm run start
src/*/index.jsx
// src/chargebee/index.jsx
export const PortalLink = () => {};
export const Action = () => {};
// usage
import { PortalLink, Action } from '@goodhood/chargebee';
src/*/index.stories.jsx
FAQs
Chargebee components
The npm package @goodhood/chargebee receives a total of 154 weekly downloads. As such, @goodhood/chargebee popularity was classified as not popular.
We found that @goodhood/chargebee demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.