Files
4ec5b537-cd86-4cf2-9303-404…/src/components/sections/hero/HeroVideoScroll.tsx
kudinDmitriyUp 1f8edaa525 Initial commit
2026-06-26 20:05:08 +00:00

231 lines
7.3 KiB
TypeScript

import { useRef, useState, useEffect } from "react";
import gsap from "gsap";
import { useGSAP } from "@gsap/react";
import { ScrollTrigger } from "gsap/ScrollTrigger";
import { motion, AnimatePresence } from "motion/react";
import Button from "@/components/ui/Button";
import TextAnimation from "@/components/ui/TextAnimation";
import AvatarGroup from "@/components/ui/AvatarGroup";
import HeroBackgroundSlot from "@/components/ui/HeroBackgroundSlot";
gsap.registerPlugin(ScrollTrigger);
type HeroVideoScrollProps = {
videoSrc: string;
tag: string;
title: string;
description: string;
primaryButton: { text: string; href: string };
secondaryButton?: { text: string; href: string };
bottomText: string;
avatarsSrc?: string[];
avatarsLabel?: string;
textAnimation: "slide-up" | "fade-blur" | "fade";
};
const HeroVideoScroll = ({
videoSrc,
tag,
title,
description,
primaryButton,
secondaryButton,
bottomText,
avatarsSrc,
avatarsLabel,
textAnimation,
}: HeroVideoScrollProps) => {
const sectionRef = useRef<HTMLDivElement>(null);
const videoRef = useRef<HTMLVideoElement>(null);
const [isVideoLoaded, setIsVideoLoaded] = useState(false);
const [showLoader, setShowLoader] = useState(true);
useEffect(() => {
const video = videoRef.current;
if (!video) return;
const handleCanPlayThrough = () => {
setIsVideoLoaded(true);
};
if (video.readyState >= 4) {
setIsVideoLoaded(true);
} else {
video.addEventListener("canplaythrough", handleCanPlayThrough, { once: true });
}
const timeout = setTimeout(() => {
setIsVideoLoaded(true);
}, 8000);
return () => {
video.removeEventListener("canplaythrough", handleCanPlayThrough);
clearTimeout(timeout);
};
}, []);
useGSAP(
() => {
if (!isVideoLoaded) return;
const video = videoRef.current;
if (!video) return;
const setupScrollTrigger = () => {
ScrollTrigger.create({
trigger: sectionRef.current,
start: "top top",
end: "bottom bottom",
scrub: 0.5,
onUpdate: (self) => {
if (video.duration) {
video.currentTime = video.duration * self.progress;
}
},
});
};
if (video.readyState >= 1) {
setupScrollTrigger();
} else {
video.addEventListener("loadedmetadata", setupScrollTrigger, {
once: true,
});
}
},
{ scope: sectionRef, dependencies: [isVideoLoaded] }
);
return (
<>
<AnimatePresence>
{showLoader && (
<motion.div
className="fixed inset-0 z-1001 flex flex-col items-center justify-center bg-foreground"
exit={{ opacity: 0 }}
transition={{ duration: 0.8, ease: [0.76, 0, 0.24, 1] }}
>
<motion.div
className="flex flex-col items-center gap-6"
animate={isVideoLoaded ? { opacity: 0, y: -20 } : { opacity: 1, y: 0 }}
transition={{ duration: 0.5 }}
onAnimationComplete={() => {
if (isVideoLoaded) setShowLoader(false);
}}
>
<div className="relative">
<span className="text-xl md:text-2xl font-medium tracking-tight text-background/20">
{tag}
</span>
<motion.span
className="absolute inset-0 text-xl md:text-2xl font-medium tracking-tight text-background"
initial={{ clipPath: "inset(0% 100% 0% 0%)" }}
animate={{ clipPath: "inset(0% 0% 0% 0%)" }}
transition={{ duration: 2, ease: [0.76, 0, 0.24, 1] }}
>
{tag}
</motion.span>
</div>
<div className="w-48 h-0.5 bg-background/20 rounded-full overflow-hidden">
<motion.div
className="h-full bg-background rounded-full"
initial={{ scaleX: 0 }}
animate={{ scaleX: isVideoLoaded ? 1 : 0.9 }}
style={{ originX: 0 }}
transition={{
duration: isVideoLoaded ? 0.3 : 3,
ease: [0.76, 0, 0.24, 1]
}}
/>
</div>
</motion.div>
</motion.div>
)}
</AnimatePresence>
<div ref={sectionRef} className="relative h-[300vh] mb-20">
<section
aria-label="Hero section"
className="sticky top-0 overflow-hidden flex flex-col justify-between w-full h-svh"
>
<HeroBackgroundSlot />
<video
ref={videoRef}
src={videoSrc}
muted
playsInline
preload="auto"
className="absolute inset-0 w-full h-full object-cover"
/>
<div
className="absolute inset-0 bg-black/20"
aria-hidden="true"
/>
<div
className="absolute z-10 left-0 top-0 w-[150vw] h-[150vw] -translate-x-1/2 -translate-y-1/2 backdrop-blur mask-[radial-gradient(circle,black_20%,transparent_70%)]"
aria-hidden="true"
/>
<motion.div
className="relative z-10 w-content-width mx-auto pt-35"
initial={{ opacity: 0, y: 30 }}
animate={!showLoader ? { opacity: 1, y: 0 } : { opacity: 0, y: 30 }}
transition={{ duration: 0.8, delay: 0.2, ease: [0.22, 1, 0.36, 1] }}
>
<div className="flex flex-col gap-3 w-full md:w-6/10 lg:w-1/2 xl:w-45/100 2xl:w-4/10">
<div className="w-fit px-3 py-1 mb-1 text-sm card rounded">
<p>{tag}</p>
</div>
<TextAnimation
text={title}
variant={textAnimation}
gradientText={true}
tag="h1"
className="text-7xl 2xl:text-8xl leading-[1.15] font-semibold text-white text-balance"
/>
<TextAnimation
text={description}
variant={textAnimation}
gradientText={false}
tag="p"
className="text-lg md:text-xl text-white leading-snug text-balance"
/>
<div className="flex flex-wrap gap-3 mt-2 md:mt-3">
<Button text={primaryButton.text} href={primaryButton.href} variant="primary" />
{secondaryButton && (
<Button text={secondaryButton.text} href={secondaryButton.href} variant="secondary" animationDelay={0.1} />
)}
</div>
{avatarsSrc && avatarsSrc.length > 0 && (
<div className="mt-3 md:mt-4">
<AvatarGroup avatarsSrc={avatarsSrc} size="lg" label={avatarsLabel} labelClassName="text-primary-cta-text" />
</div>
)}
</div>
</motion.div>
<motion.div
className="relative z-10 flex justify-end mx-auto pb-8 w-content-width"
initial={{ opacity: 0, y: 30 }}
animate={!showLoader ? { opacity: 1, y: 0 } : { opacity: 0, y: 30 }}
transition={{ duration: 0.8, delay: 0.4, ease: [0.22, 1, 0.36, 1] }}
>
<p className="md:max-w-1/2 2xl:max-w-4/10 text-sm md:text-base uppercase tracking-wide leading-normal text-balance text-end text-white/75">
{bottomText}
</p>
</motion.div>
</section>
</div>
</>
);
};
export default HeroVideoScroll;