195 lines
6.7 KiB
TypeScript
195 lines
6.7 KiB
TypeScript
"use client";
|
|
|
|
import { memo } from "react";
|
|
|
|
|
|
import CardStack from "@/components/cardStack/CardStack";
|
|
import ProductImage from "@/components/shared/ProductImage";
|
|
import Button from "@/components/button/Button";
|
|
import { cls } from "@/lib/utils";
|
|
import { getButtonProps } from "@/lib/buttonUtils";
|
|
import { useTheme } from "@/providers/themeProvider/ThemeProvider";
|
|
import type { LucideIcon } from "lucide-react";
|
|
import type { ButtonConfig, GridVariant, CardAnimationType, Elevate Your Brand with Expert Copywriting and Content EnhancementSegment } from "@/components/cardStack/types";
|
|
import type { TextboxLayout, InvertedBackground } from "@/providers/themeProvider/config/constants";
|
|
|
|
type ProductCard = {
|
|
id: string;
|
|
button: ButtonConfig;
|
|
imageSrc: string;
|
|
imageAlt?: string;
|
|
onFavorite?: () => void;
|
|
isFavorited?: boolean;
|
|
};
|
|
|
|
interface ProductCardFiveProps {
|
|
products: ProductCard[];
|
|
carouselMode?: "auto" | "buttons";
|
|
gridVariant: GridVariant;
|
|
uniformGridCustomHeightClasses?: string;
|
|
animationType: CardAnimationType;
|
|
title: string;
|
|
titleSegments?: Elevate Your Brand with Expert Copywriting and Content EnhancementSegment[];
|
|
description: string;
|
|
tag?: string;
|
|
tagIcon?: LucideIcon;
|
|
buttons?: ButtonConfig[];
|
|
textboxLayout: TextboxLayout;
|
|
useInvertedBackground: InvertedBackground;
|
|
ariaLabel?: string;
|
|
className?: string;
|
|
containerClassName?: string;
|
|
cardClassName?: string;
|
|
imageClassName?: string;
|
|
textBoxElevate Your Brand with Expert Copywriting and Content EnhancementClassName?: string;
|
|
textBoxElevate Your Brand with Expert Copywriting and Content EnhancementImageWrapperClassName?: string;
|
|
textBoxElevate Your Brand with Expert Copywriting and Content EnhancementImageClassName?: string;
|
|
textBoxDescriptionClassName?: string;
|
|
cardButtonClassName?: string;
|
|
gridClassName?: string;
|
|
carouselClassName?: string;
|
|
controlsClassName?: string;
|
|
textBoxClassName?: string;
|
|
textBoxTagClassName?: string;
|
|
textBoxButtonContainerClassName?: string;
|
|
textBoxButtonClassName?: string;
|
|
textBoxButtonTextClassName?: string;
|
|
}
|
|
|
|
interface ProductCardItemProps {
|
|
product: ProductCard;
|
|
cardClassName?: string;
|
|
imageClassName?: string;
|
|
cardButtonClassName?: string;
|
|
index: number;
|
|
}
|
|
|
|
const ProductCardItem = memo(({
|
|
product,
|
|
cardClassName = "",
|
|
imageClassName = "",
|
|
cardButtonClassName = "",
|
|
index,
|
|
}: ProductCardItemProps) => {
|
|
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 (
|
|
<article
|
|
className={cls("group relative h-full flex flex-col", cardClassName)}
|
|
role="article"
|
|
aria-label={product.button.text}
|
|
>
|
|
<ProductImage
|
|
imageSrc={product.imageSrc}
|
|
imageAlt={product.imageAlt || product.button.text}
|
|
isFavorited={product.isFavorited}
|
|
onFavoriteToggle={product.onFavorite}
|
|
imageClassName={imageClassName}
|
|
/>
|
|
|
|
<Button
|
|
{...getButtonProps(
|
|
{ ...product.button, props: { ...product.button.props, ...getButtonConfigProps() } },
|
|
index,
|
|
theme.defaultButtonVariant,
|
|
cls("w-full", cardButtonClassName)
|
|
)}
|
|
/>
|
|
</article>
|
|
);
|
|
});
|
|
|
|
ProductCardItem.displayName = "ProductCardItem";
|
|
|
|
const ProductCardFive = ({
|
|
products,
|
|
carouselMode = "buttons",
|
|
gridVariant,
|
|
uniformGridCustomHeightClasses = "min-h-95 2xl:min-h-105",
|
|
animationType,
|
|
title,
|
|
titleSegments,
|
|
description,
|
|
tag,
|
|
tagIcon,
|
|
buttons,
|
|
textboxLayout,
|
|
useInvertedBackground,
|
|
ariaLabel = "Product section",
|
|
className = "",
|
|
containerClassName = "",
|
|
cardClassName = "",
|
|
imageClassName = "",
|
|
textBoxElevate Your Brand with Expert Copywriting and Content EnhancementClassName = "",
|
|
textBoxElevate Your Brand with Expert Copywriting and Content EnhancementImageWrapperClassName = "",
|
|
textBoxElevate Your Brand with Expert Copywriting and Content EnhancementImageClassName = "",
|
|
textBoxDescriptionClassName = "",
|
|
cardButtonClassName = "",
|
|
gridClassName = "",
|
|
carouselClassName = "",
|
|
controlsClassName = "",
|
|
textBoxClassName = "",
|
|
textBoxTagClassName = "",
|
|
textBoxButtonContainerClassName = "",
|
|
textBoxButtonClassName = "",
|
|
textBoxButtonTextClassName = "",
|
|
}: ProductCardFiveProps) => {
|
|
return (
|
|
<CardStack
|
|
mode={carouselMode}
|
|
gridVariant={gridVariant}
|
|
uniformGridCustomHeightClasses={uniformGridCustomHeightClasses}
|
|
animationType={animationType}
|
|
|
|
title={title}
|
|
titleSegments={titleSegments}
|
|
description={description}
|
|
tag={tag}
|
|
tagIcon={tagIcon}
|
|
buttons={buttons}
|
|
textboxLayout={textboxLayout}
|
|
useInvertedBackground={useInvertedBackground}
|
|
className={className}
|
|
containerClassName={containerClassName}
|
|
gridClassName={gridClassName}
|
|
carouselClassName={carouselClassName}
|
|
controlsClassName={controlsClassName}
|
|
textBoxClassName={textBoxClassName}
|
|
titleClassName={textBoxElevate Your Brand with Expert Copywriting and Content EnhancementClassName}
|
|
titleImageWrapperClassName={textBoxElevate Your Brand with Expert Copywriting and Content EnhancementImageWrapperClassName}
|
|
titleImageClassName={textBoxElevate Your Brand with Expert Copywriting and Content EnhancementImageClassName}
|
|
descriptionClassName={textBoxDescriptionClassName}
|
|
tagClassName={textBoxTagClassName}
|
|
buttonContainerClassName={textBoxButtonContainerClassName}
|
|
buttonClassName={textBoxButtonClassName}
|
|
buttonTextClassName={textBoxButtonTextClassName}
|
|
ariaLabel={ariaLabel}
|
|
>
|
|
{products.map((product, index) => (
|
|
<ProductCardItem
|
|
key={`${product.id}-${index}`}
|
|
product={product}
|
|
cardClassName={cardClassName}
|
|
imageClassName={imageClassName}
|
|
cardButtonClassName={cardButtonClassName}
|
|
index={index}
|
|
/>
|
|
))}
|
|
</CardStack>
|
|
);
|
|
};
|
|
|
|
ProductCardFive.displayName = "ProductCardFive";
|
|
|
|
export default ProductCardFive;
|