Files
beb0c74e-341e-4bcb-a741-94b…/src/components/sections/testimonial/TestimonialSplitCards.tsx
2026-06-20 17:49:03 +00:00

140 lines
5.5 KiB
TypeScript

import { useCallback, useEffect, useState } from "react";
import useEmblaCarousel from "embla-carousel-react";
import type { EmblaCarouselType } from "embla-carousel";
import Button from "@/components/ui/Button";
import TextAnimation from "@/components/ui/TextAnimation";
import ImageOrVideo from "@/components/ui/ImageOrVideo";
import ScrollReveal from "@/components/ui/ScrollReveal";
import { cls } from "@/lib/utils";
type Testimonial = {
tag: string;
title: string;
quote: string;
name: string;
date: string;
} & ({ avatarImageSrc: string; avatarVideoSrc?: never } | { avatarVideoSrc: string; avatarImageSrc?: never })
& ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never });
const TestimonialSplitCards = ({
tag,
title,
description,
primaryButton,
secondaryButton,
testimonials,
}: {
tag: string;
title: string;
description: string;
primaryButton?: { text: string; href: string };
secondaryButton?: { text: string; href: string };
testimonials: Testimonial[];
}) => {
const [emblaRef, emblaApi] = useEmblaCarousel({ loop: true, align: "center", containScroll: "trimSnaps" });
const [selectedIndex, setSelectedIndex] = useState(0);
const scrollTo = useCallback((index: number) => emblaApi?.scrollTo(index), [emblaApi]);
const onSelect = useCallback((api: EmblaCarouselType) => {
setSelectedIndex(api.selectedScrollSnap());
}, []);
useEffect(() => {
if (!emblaApi) return;
onSelect(emblaApi);
emblaApi.on("select", onSelect).on("reInit", onSelect);
return () => {
emblaApi.off("select", onSelect).off("reInit", onSelect);
};
}, [emblaApi, onSelect]);
return (
<section aria-label="Testimonials section" className="py-20">
<div className="flex flex-col gap-8 md:gap-10">
<div className="flex flex-col items-center gap-2 w-content-width mx-auto">
<div className="px-3 py-1 mb-1 text-sm card rounded w-fit">
<p>{tag}</p>
</div>
<TextAnimation
text={title}
variant="slide-up"
gradientText={true}
tag="h2"
className="md:max-w-8/10 text-6xl 2xl:text-7xl leading-[1.15] font-semibold text-center text-balance"
/>
<TextAnimation
text={description}
variant="slide-up"
gradientText={false}
tag="p"
className="md:max-w-7/10 text-lg md:text-xl leading-snug text-center text-balance"
/>
{(primaryButton || secondaryButton) && (
<div className="flex flex-wrap justify-center gap-3 mt-2 md:mt-3">
{primaryButton && <Button text={primaryButton.text} href={primaryButton.href} variant="primary" />}
{secondaryButton && <Button text={secondaryButton.text} href={secondaryButton.href} variant="secondary" animationDelay={0.1} />}
</div>
)}
</div>
<ScrollReveal variant="fade-blur" className="flex flex-col">
<div ref={emblaRef} className="overflow-hidden">
<div className="flex">
{testimonials.map((testimonial) => (
<div key={testimonial.name} className="flex-none w-content-width md:w-[calc(var(--width-content-width)*0.8)] mr-5 mb-10">
<div className="flex flex-col justify-between md:grid md:grid-cols-2 h-full gap-6 p-6 md:p-10 card rounded overflow-hidden">
<div className="flex flex-col justify-between gap-4 md:gap-10">
<div className="flex flex-col gap-2">
<div className="px-3 py-1 mb-1 w-fit text-sm card rounded">
<p>{testimonial.tag}</p>
</div>
<h3 className="text-4xl md:text-5xl font-semibold leading-[1.15] text-balance">{testimonial.title}</h3>
<p className="text-base md:text-lg leading-snug text-balance">{testimonial.quote}</p>
</div>
<div className="flex items-center gap-3">
<ImageOrVideo
imageSrc={testimonial.avatarImageSrc}
videoSrc={testimonial.avatarVideoSrc}
className="size-10 md:size-11 2xl:size-12 rounded-full object-cover"
/>
<div className="flex flex-col min-w-0">
<span className="text-base text-foreground font-semibold leading-snug truncate">{testimonial.name}</span>
<span className="text-base text-foreground/75 leading-snug truncate">{testimonial.date}</span>
</div>
</div>
</div>
<div className="relative min-h-80 h-full md:aspect-square">
<ImageOrVideo imageSrc={testimonial.imageSrc} videoSrc={testimonial.videoSrc} />
</div>
</div>
</div>
))}
</div>
</div>
<div className="flex justify-center gap-2">
{testimonials.map((_, index) => (
<button
key={index}
onClick={() => scrollTo(index)}
className={cls("size-2 rounded-full transition-colors", index === selectedIndex ? "bg-foreground" : "bg-foreground/5")}
aria-label="Go to slide"
/>
))}
</div>
</ScrollReveal>
</div>
</section>
);
};
export default TestimonialSplitCards;