/[sudobot]/branches/7.x/docs/contexts/RouterContext.tsx
ViewVC logotype

Contents of /branches/7.x/docs/contexts/RouterContext.tsx

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (show annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 852 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
1 "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