Build a custom checkout flow with a new payment method
This guide will walk you through how to build a custom user interface for a checkout flow that allows users to add a new payment method during checkout.
For the custom flow that allows users to checkout with an existing payment method, see the dedicated guide.
For the custom flow that allows users to add a new payment method to their account, outside of a checkout flow, see the dedicated guide.
Enable billing features
To use billing features, you first need to ensure they are enabled for your application. Follow the Billing documentation to enable them and setup your plans.
Checkout flow
To create a checkout session with a new payment card, you must:
- Set up the checkout provider with plan details.
- Initialize the checkout session when the user is ready.
- Render the payment form for card collection.
- Confirm the payment with the collected payment method.
- Complete the checkout process and redirect the user.
The following example:
- Uses the useCheckout() hook to get to initiate and manage the checkout session.
- Uses the usePaymentElement() hook to control the payment element, which is rendered by
<PaymentElement />
. - Assumes that you have already have a valid
planId
, which you can acquire in many ways.- Copy from the Clerk Dashboard.
- Use the Clerk Backend API.
- Use the new usePlans() hook to get the plan details.
This example is written for Next.js App Router but can be adapted for any React-based framework.
'use client'
import * as React from 'react'
import { SignedIn, ClerkLoaded } from '@clerk/nextjs'
import {
CheckoutProvider,
useCheckout,
PaymentElementProvider,
PaymentElement,
usePaymentElement,
} from '@clerk/nextjs/experimental'
export default function CheckoutPage() {
return (
<CheckoutProvider for="user" planId="cplan_xxx" planPeriod="month">
<ClerkLoaded>
<SignedIn>
<CustomCheckout />
</SignedIn>
</ClerkLoaded>
</CheckoutProvider>
)
}
function CustomCheckout() {
const { checkout } = useCheckout()
const { status } = checkout
if (status === 'needs_initialization') {
return <CheckoutInitialization />
}
return (
<div className="checkout-container">
<CheckoutSummary />
<PaymentElementProvider checkout={checkout}>
<PaymentSection />
</PaymentElementProvider>
</div>
)
}
function CheckoutInitialization() {
const { checkout } = useCheckout()
const { start, status, fetchStatus } = checkout
if (status !== 'needs_initialization') {
return null
}
return (
<button onClick={start} disabled={fetchStatus === 'fetching'} className="start-checkout-button">
{fetchStatus === 'fetching' ? 'Initializing...' : 'Start Checkout'}
</button>
)
}
function PaymentSection() {
const { checkout } = useCheckout()
const { isConfirming, confirm, finalize, error } = checkout
const { isFormReady, submit } = usePaymentElement()
const [isProcessing, setIsProcessing] = React.useState(false)
const handleSubmit = async (e: React.FormEvent<HTMLFormElement>) => {
e.preventDefault()
if (!isFormReady || isProcessing) return
setIsProcessing(true)
try {
// Submit payment form to get payment method
const { data, error } = await submit()
// Usually a validation error from stripe that you can ignore
if (error) {
return
}
// Confirm checkout with payment method
await confirm(data)
// Complete checkout and redirect
finalize({ redirectUrl: '/dashboard' })
} catch (error) {
console.error('Payment failed:', error)
} finally {
setIsProcessing(false)
}
}
return (
<form onSubmit={handleSubmit}>
<PaymentElement fallback={<div>Loading payment element...</div>} />
{error && <div>{error.message}</div>}
<button type="submit" disabled={!isFormReady || isProcessing || isConfirming}>
{isProcessing || isConfirming ? 'Processing...' : 'Complete Purchase'}
</button>
</form>
)
}
function CheckoutSummary() {
const { checkout } = useCheckout()
const { plan, totals } = checkout
if (!plan) {
return null
}
return (
<div>
<h2>Order Summary</h2>
<span>{plan.name}</span>
<span>
{totals.totalDueNow.currencySymbol} {totals.totalDueNow.amountFormatted}
</span>
</div>
)
}
Feedback
Last updated on