"use client"; import { memo } from "react"; import CardStack from "@/components/cardStack/CardStack"; import PricingFeatureList from "@/components/shared/PricingFeatureList"; import Button from "@/components/button/Button"; import { useTheme } from "@/providers/themeProvider/ThemeProvider"; import { getButtonProps } from "@/lib/buttonUtils"; import { cls, shouldUseInvertedText } from "@/lib/utils"; import type { LucideIcon } from "lucide-react"; import type { ButtonConfig, CardAnimationType, TitleSegment } from "@/components/cardStack/types"; import type { TextboxLayout, InvertedBackground } from "@/providers/themeProvider/config/constants"; type PricingPlan = { id: string; price: string; subtitle: string; features: string[]; buttons: ButtonConfig[]; bottomNotes?: string[]; }; interface PricingCardSixProps { plans: PricingPlan[]; carouselMode?: "auto" | "buttons"; uniformGridCustomHeightClasses?: string; animationType: CardAnimationType; title: string; titleSegments?: TitleSegment[]; description: string; tag?: string; tagIcon?: LucideIcon; buttons?: ButtonConfig[]; textboxLayout: TextboxLayout; useInvertedBackground: InvertedBackground; ariaLabel?: string; className?: string; containerClassName?: string; cardClassName?: string; textBoxTitleClassName?: string; textBoxTitleImageWrapperClassName?: string; textBoxTitleImageClassName?: string; textBoxDescriptionClassName?: string; priceClassName?: string; subtitleClassName?: string; featuresClassName?: string; featureItemClassName?: string; planButtonContainerClassName?: string; planButtonClassName?: string; bottomNotesContainerClassName?: string; bottomNoteClassName?: string; gridClassName?: string; carouselClassName?: string; controlsClassName?: string; textBoxClassName?: string; textBoxTagClassName?: string; textBoxButtonContainerClassName?: string; textBoxButtonClassName?: string; textBoxButtonTextClassName?: string; } interface PricingCardItemProps { plan: PricingPlan; shouldUseLightText: boolean; cardClassName?: string; priceClassName?: string; subtitleClassName?: string; featuresClassName?: string; featureItemClassName?: string; planButtonContainerClassName?: string; planButtonClassName?: string; bottomNotesContainerClassName?: string; bottomNoteClassName?: string; } const PricingCardItem = memo(({ plan, shouldUseLightText, cardClassName = "", priceClassName = "", subtitleClassName = "", featuresClassName = "", featureItemClassName = "", planButtonContainerClassName = "", planButtonClassName = "", bottomNotesContainerClassName = "", bottomNoteClassName = "", }: PricingCardItemProps) => { const theme = useTheme(); const getButtonConfigProps = () => { if (theme.defaultButtonVariant === "hover-bubble") { return { bgClassName: "w-full" }; } if (theme.defaultButtonVariant === "icon-arrow") { return { className: "justify-between" }; } return {}; }; return (
{plan.price}

{plan.subtitle}

{plan.buttons && plan.buttons.length > 0 && (
{plan.buttons.slice(0, 2).map((button, index) => (
)} {plan.bottomNotes && plan.bottomNotes.length > 0 && (
{plan.bottomNotes.map((note, index) => (
{note}
))}
)}
); }); PricingCardItem.displayName = "PricingCardItem"; const PricingCardSix = ({ plans, carouselMode = "buttons", uniformGridCustomHeightClasses, animationType, title, titleSegments, description, tag, tagIcon, buttons, textboxLayout, useInvertedBackground, ariaLabel = "Pricing section", className = "", containerClassName = "", cardClassName = "", textBoxTitleClassName = "", textBoxTitleImageWrapperClassName = "", textBoxTitleImageClassName = "", textBoxDescriptionClassName = "", priceClassName = "", subtitleClassName = "", featuresClassName = "", featureItemClassName = "", planButtonContainerClassName = "", planButtonClassName = "", bottomNotesContainerClassName = "", bottomNoteClassName = "", gridClassName = "", carouselClassName = "", controlsClassName = "", textBoxClassName = "", textBoxTagClassName = "", textBoxButtonContainerClassName = "", textBoxButtonClassName = "", textBoxButtonTextClassName = "", }: PricingCardSixProps) => { const theme = useTheme(); const shouldUseLightText = shouldUseInvertedText(useInvertedBackground, theme.cardStyle); return ( {plans.map((plan, index) => ( ))} ); }; PricingCardSix.displayName = "PricingCardSix"; export default PricingCardSix;