mirror of
https://github.com/vercel/commerce.git
synced 2025-05-17 23:16:59 +00:00
1.8 KiB
1.8 KiB
Rally ♥ Next.js
For successfully integrating the Rally checkout button follow the steps bellow.
1. Install the Rally checkout button
npm install @rallycommerce/checkout-button
2. Create a Cart Button component
Create a CartButton.tsx
component in the project with the following content 👇. Structure example 👉 lib/rally/CartButton.tsx
import React from 'react'
import { Rally, RallyCheckoutButtonConfig } from '@rallycommerce/checkout-button';
declare global {
namespace JSX {
interface IntrinsicElements {
'rally-checkout-button': any;
}
}
}
interface CartButtonProps {
customText?: string | undefined;
customClass?: string | undefined;
cart?: any;
}
const CartButton = (props: CartButtonProps) => {
const customClass = props.customClass || "rally-custom-button-class";
const cart = props?.cart;
if (cart) {
const configuration: RallyCheckoutButtonConfig = {
cartData: { content: cart, id: cart.id, currency: cart.currency }
};
Rally.init('clientId', configuration);
}
return (<>
{<rally-checkout-button suppressHydrationWarning={true} custom-class={customClass} custom-text={props.customText} loader="true">
</rally-checkout-button>}
</>)
}
export default CartButton;
3. Import the Cart Button component
The component can now be imported (ex. on the cart page) like this 👇.
import dynamic from 'next/dynamic';
const CartButton = dynamic(() => import('@lib/rally/CartButton'), {
ssr: false,
})
import { Context } from '../../lib/xy/storefront-data-hooks/src/Context';
const { cart } = useContext(Context)
<CartButton cart={cart} customText="Custom text" customClass="custom-css-class"></CartButton>