/[sudobot]/trunk/docs/contexts/RouterContext.tsx
ViewVC logotype

Annotation of /trunk/docs/contexts/RouterContext.tsx

Parent Directory Parent Directory | Revision Log Revision Log


Revision 575 - (hide annotations)
Mon Jul 29 17:59:26 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 852 byte(s)
chore: add trunk
1 rakinar2 575 "use client";
2    
3     import { usePathname } from "next/navigation";
4     import {
5     Dispatch,
6     PropsWithChildren,
7     SetStateAction,
8     createContext,
9     useContext,
10     useEffect,
11     useState,
12     } from "react";
13    
14     type RouterContextData = {
15     isChanging: boolean;
16     setIsChanging: Dispatch<SetStateAction<boolean>>;
17     };
18    
19     const RouterContext = createContext<RouterContextData>({} as RouterContextData);
20    
21     export function useRouterContext() {
22     return useContext(RouterContext);
23     }
24    
25     export function RouterContextProvider({ children }: PropsWithChildren) {
26     const [isChanging, setIsChanging] = useState(false);
27     const pathname = usePathname();
28    
29     useEffect(() => setIsChanging(false), [pathname]);
30    
31     return (
32     <RouterContext.Provider value={{ isChanging, setIsChanging }}>
33     {children}
34     </RouterContext.Provider>
35     );
36     }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26