source: src/routes/hooks/use-active-link.ts@ 057453c

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

add customer

  • Property mode set to 100644
File size: 533 bytes
Line 
1import { usePathname } from 'next/navigation';
2
3// ----------------------------------------------------------------------
4
5type ReturnType = boolean;
6
7export function useActiveLink(path: string, deep = true): ReturnType {
8 const pathname = usePathname();
9
10 const checkPath = path.startsWith('#');
11
12 const currentPath = path === '/' ? '/' : `${path}/`;
13
14 const normalActive = !checkPath && pathname === currentPath;
15
16 const deepActive = !checkPath && pathname.includes(currentPath);
17
18 return deep ? deepActive : normalActive;
19}
Note: See TracBrowser for help on using the repository browser.