source: src/routes/hooks/use-active-link.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: 533 bytes
RevLine 
[5d6f37a]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.