// @ts-nocheck 'use client'; import { motion, useMotionValueEvent, useScroll } from 'framer-motion'; import React, { useEffect, useRef, useState } from 'react'; import { cn } from '../../lib/utils'; export const StickyScroll = ({ content, contentClassName, }: { content: { title: string; description: string; content?: React.ReactNode | any; }[]; contentClassName?: string; }) => { const [activeCard, setActiveCard] = React.useState(0); const ref = useRef(null); const { scrollYProgress } = useScroll({ // uncomment line 22 and comment line 23 if you DONT want the overflow container and want to have it change on the entire page scroll // target: ref container: ref, offset: ['start start', 'end start'], }); const cardLength = content.length; useMotionValueEvent(scrollYProgress, 'change', (latest) => { const cardsBreakpoints = content.map((_, index) => index / cardLength); const closestBreakpointIndex = cardsBreakpoints.reduce((acc, breakpoint, index) => { const distance = Math.abs(latest - breakpoint); if (distance < Math.abs(latest - cardsBreakpoints[acc])) { return index; } return acc; }, 0); setActiveCard(closestBreakpointIndex); }); const backgroundColors = ['var(--slate-900)', 'var(--black)', 'var(--neutral-900)']; const linearGradients = [ 'linear-gradient(to bottom right, var(--cyan-500), var(--emerald-500))', 'linear-gradient(to bottom right, var(--pink-500), var(--indigo-500))', 'linear-gradient(to bottom right, var(--orange-500), var(--yellow-500))', ]; const [backgroundGradient, setBackgroundGradient] = useState(linearGradients[0]); useEffect(() => { setBackgroundGradient(linearGradients[activeCard % linearGradients.length]); }, [activeCard]); return (
{content.map((item, index) => (
{item.title} {item.description}
))}
); };