188 lines
6.3 KiB
TypeScript
188 lines
6.3 KiB
TypeScript
"use client";
|
|
|
|
import { memo } from "react";
|
|
import CardStack from "@/components/cardStack/CardStack";
|
|
import PricingFeatureList from "@/components/shared/PricingFeatureList";
|
|
import { cls, shouldUseInvertedText } from "@/lib/utils";
|
|
import { useTheme } from "@/providers/themeProvider/ThemeProvider";
|
|
import type { LucideIcon } from "lucide-react";
|
|
import type { ButtonConfig, GridVariant, CardAnimationType, TitleSegment } from "@/components/cardStack/types";
|
|
import type { TextboxLayout, InvertedBackground } from "@/providers/themeProvider/config/constants";
|
|
|
|
type Metric = {
|
|
id: string;
|
|
value: string;
|
|
title: string;
|
|
items: string[];
|
|
};
|
|
|
|
interface MetricCardSevenProps {
|
|
metrics: Metric[];
|
|
carouselMode?: "auto" | "buttons";
|
|
gridVariant: GridVariant;
|
|
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;
|
|
valueClassName?: string;
|
|
metricTitleClassName?: string;
|
|
featuresClassName?: string;
|
|
featureItemClassName?: string;
|
|
gridClassName?: string;
|
|
carouselClassName?: string;
|
|
controlsClassName?: string;
|
|
textBoxClassName?: string;
|
|
textBoxTagClassName?: string;
|
|
textBoxButtonContainerClassName?: string;
|
|
textBoxButtonClassName?: string;
|
|
textBoxButtonTextClassName?: string;
|
|
}
|
|
|
|
interface MetricCardItemProps {
|
|
metric: Metric;
|
|
shouldUseLightText: boolean;
|
|
cardClassName?: string;
|
|
valueClassName?: string;
|
|
metricTitleClassName?: string;
|
|
featuresClassName?: string;
|
|
featureItemClassName?: string;
|
|
}
|
|
|
|
const MetricCardItem = memo(({
|
|
metric,
|
|
shouldUseLightText,
|
|
cardClassName = "",
|
|
valueClassName = "",
|
|
metricTitleClassName = "",
|
|
featuresClassName = "",
|
|
featureItemClassName = "",
|
|
}: MetricCardItemProps) => {
|
|
return (
|
|
<div className={cls("relative h-full card text-foreground rounded-theme-capped p-6 flex flex-col justify-between gap-4", cardClassName)}>
|
|
<div className="flex flex-col gap-0" >
|
|
<h3 className={cls("relative z-1 text-9xl md:text-8xl font-medium text-accent truncate", valueClassName)}>
|
|
{metric.value}
|
|
</h3>
|
|
<p className={cls("relative z-1 text-2xl md:text-xl truncate", shouldUseLightText ? "text-background" : "text-foreground", metricTitleClassName)}>
|
|
{metric.title}
|
|
</p>
|
|
</div>
|
|
<div className="pt-4 border-t border-t-accent" >
|
|
{metric.items.length > 0 && (
|
|
<PricingFeatureList
|
|
features={metric.items}
|
|
shouldUseLightText={shouldUseLightText}
|
|
className={cls("mt-1", featuresClassName)}
|
|
featureItemClassName={featureItemClassName}
|
|
/>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
});
|
|
|
|
MetricCardItem.displayName = "MetricCardItem";
|
|
|
|
const MetricCardSeven = ({
|
|
metrics,
|
|
carouselMode = "buttons",
|
|
gridVariant,
|
|
uniformGridCustomHeightClasses,
|
|
animationType,
|
|
title,
|
|
titleSegments,
|
|
description,
|
|
tag,
|
|
tagIcon,
|
|
buttons,
|
|
textboxLayout,
|
|
useInvertedBackground,
|
|
ariaLabel = "Metrics section",
|
|
className = "",
|
|
containerClassName = "",
|
|
cardClassName = "",
|
|
textBoxTitleClassName = "",
|
|
textBoxTitleImageWrapperClassName = "",
|
|
textBoxTitleImageClassName = "",
|
|
textBoxDescriptionClassName = "",
|
|
valueClassName = "",
|
|
metricTitleClassName = "",
|
|
featuresClassName = "",
|
|
featureItemClassName = "",
|
|
gridClassName = "",
|
|
carouselClassName = "",
|
|
controlsClassName = "",
|
|
textBoxClassName = "",
|
|
textBoxTagClassName = "",
|
|
textBoxButtonContainerClassName = "",
|
|
textBoxButtonClassName = "",
|
|
textBoxButtonTextClassName = "",
|
|
}: MetricCardSevenProps) => {
|
|
const theme = useTheme();
|
|
const shouldUseLightText = shouldUseInvertedText(useInvertedBackground, theme.cardStyle);
|
|
|
|
return (
|
|
<CardStack
|
|
useInvertedBackground={useInvertedBackground}
|
|
mode={carouselMode}
|
|
gridVariant={gridVariant}
|
|
uniformGridCustomHeightClasses={uniformGridCustomHeightClasses}
|
|
animationType={animationType}
|
|
|
|
title={title}
|
|
titleSegments={titleSegments}
|
|
description={description}
|
|
tag={tag}
|
|
tagIcon={tagIcon}
|
|
buttons={buttons}
|
|
textboxLayout={textboxLayout}
|
|
className={className}
|
|
containerClassName={containerClassName}
|
|
gridClassName={gridClassName}
|
|
carouselClassName={carouselClassName}
|
|
controlsClassName={controlsClassName}
|
|
textBoxClassName={textBoxClassName}
|
|
titleClassName={textBoxTitleClassName}
|
|
titleImageWrapperClassName={textBoxTitleImageWrapperClassName}
|
|
titleImageClassName={textBoxTitleImageClassName}
|
|
descriptionClassName={textBoxDescriptionClassName}
|
|
tagClassName={textBoxTagClassName}
|
|
buttonContainerClassName={textBoxButtonContainerClassName}
|
|
buttonClassName={textBoxButtonClassName}
|
|
buttonTextClassName={textBoxButtonTextClassName}
|
|
ariaLabel={ariaLabel}
|
|
>
|
|
{metrics.map((metric, index) => (
|
|
<MetricCardItem
|
|
key={`${metric.id}-${index}`}
|
|
metric={metric}
|
|
shouldUseLightText={shouldUseLightText}
|
|
cardClassName={cardClassName}
|
|
valueClassName={valueClassName}
|
|
metricTitleClassName={metricTitleClassName}
|
|
featuresClassName={featuresClassName}
|
|
featureItemClassName={featureItemClassName}
|
|
/>
|
|
))}
|
|
</CardStack>
|
|
);
|
|
};
|
|
|
|
MetricCardSeven.displayName = "MetricCardSeven";
|
|
|
|
export default MetricCardSeven;
|