@o2s/blocks.checkout-billing-payment
v0.2.3
Published
Checkout step for selecting a payment method with cart summary preview.
Readme
@o2s/blocks.checkout-billing-payment
Block for the payment step in the checkout flow.
The checkout-billing-payment block lets users select a payment method. Data is fetched client-side using cartId from localStorage. Part of the multi-step checkout flow.
- Payment method – Select from available providers (card, BLIK, etc.)
- Cart summary – Subtotal, tax, shipping, total alongside the form
- Provider integration – Uses Payments integration for available methods
Content editors place the block via CMS. Developers connect Carts, Checkout, Payments, and CMS integrations.
Installation
npm install @o2s/blocks.checkout-billing-paymentUsage
Backend (API Harmonization)
Register the block in app.module.ts:
import * as CheckoutBillingPayment from "@o2s/blocks.checkout-billing-payment/api-harmonization";
import { AppConfig } from "./app.config";
@Module({
imports: [CheckoutBillingPayment.Module.register(AppConfig)],
})
export class AppModule {}Frontend
Register the block in renderBlocks.tsx:
import * as CheckoutBillingPayment from '@o2s/blocks.checkout-billing-payment/frontend';
export const renderBlocks = async (blocks: CMS.Model.Page.SlotBlock[]) => {
return blocks.map((block) => {
if (block.type === 'checkout-billing-payment') {
return (
<CheckoutBillingPayment.Renderer
key={block.id}
id={block.id}
slug={slug}
locale={locale}
accessToken={session?.accessToken}
userId={session?.user?.id}
routing={routing}
/>
);
}
// ... other blocks
});
};Configuration
This block requires Carts, Checkout, Payments, and CMS integrations in AppConfig.
Related Blocks
@o2s/blocks.cart- Shopping cart@o2s/blocks.checkout-company-data- Company details step@o2s/blocks.checkout-shipping-address- Shipping address step@o2s/blocks.checkout-summary- Order summary step@o2s/blocks.order-confirmation- Order confirmation page
About Blocks in O2S
Blocks are self-contained, reusable UI components that combine harmonizing and frontend components into a single package. Each block is independently packaged as an NPM module and includes three primary parts: API Harmonization Module, Frontend Components, and SDK Methods. Blocks allow you to quickly add or remove functionality without impacting other components of the application.
- See all blocks: Blocks Documentation
- View this block in Storybook: checkout-billing-payment
About O2S
Part of Open Self Service (O2S) - an open-source framework for building composable customer self-service portals. O2S simplifies integration of multiple headless APIs into a scalable frontend, providing an API-agnostic architecture with a normalization layer.
- Website: https://www.openselfservice.com/
- GitHub: https://github.com/o2sdev/openselfservice
- Documentation: https://www.openselfservice.com/docs
