import { scrollAnimation } from 'animare/plugins'; import { useEffect } from 'react'; import type { ScrollAnimationOptions } from '../types.js'; /** * * Makes the scroll progress control the timeline. * * @param options — The options for configuring the scroll-controlled animation. * @returns — A function to remove the scroll event listener. * * @example * const scrollAnim = useAnimare(() => { * // ... * }); * * useScrollAnimation({ * timeline: scrollAnim, * element: document.querySelector('.block')!, * start: ScrollElementEdge.Bottom, * end: ScrollElementEdge.Top, * startOffset: 100, * }); */ export function useScrollAnimation(options: ScrollAnimationOptions, deps: React.DependencyList = []) { useEffect(() => { const unSub = scrollAnimation(options); return unSub; // eslint-disable-next-line react-hooks/exhaustive-deps }, [options.timeline, ...deps]); }