source: src/hooks/use-off-set-top.ts@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 1.0 KB
Line 
1'use client';
2
3import { useScroll } from 'framer-motion';
4import { useState, useEffect, useMemo, useCallback } from 'react';
5
6// ----------------------------------------------------------------------
7
8type ReturnType = boolean;
9
10interface UseScrollOptions extends Omit<ScrollOptions, 'container' | 'target'> {
11 container?: React.RefObject<HTMLElement>;
12 target?: React.RefObject<HTMLElement>;
13}
14
15export function useOffSetTop(top = 0, options?: UseScrollOptions): ReturnType {
16 const { scrollY } = useScroll(options);
17
18 const [value, setValue] = useState(false);
19
20 const onOffSetTop = useCallback(() => {
21 scrollY.on('change', (scrollHeight) => {
22 if (scrollHeight > top) {
23 setValue(true);
24 } else {
25 setValue(false);
26 }
27 });
28 }, [scrollY, top]);
29
30 useEffect(() => {
31 onOffSetTop();
32 }, [onOffSetTop]);
33
34 const memoizedValue = useMemo(() => value, [value]);
35
36 return memoizedValue;
37}
38
39// Usage
40// const offset = useOffSetTop(100);
41
42// Or
43// const offset = useOffSetTop(100, {
44// container: ref,
45// });
Note: See TracBrowser for help on using the repository browser.