Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
@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
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
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.