summaryrefslogtreecommitdiff
path: root/src/lib/contexts/Auth.context.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/contexts/Auth.context.tsx')
-rw-r--r--src/lib/contexts/Auth.context.tsx37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/lib/contexts/Auth.context.tsx b/src/lib/contexts/Auth.context.tsx
new file mode 100644
index 0000000..ff2d369
--- /dev/null
+++ b/src/lib/contexts/Auth.context.tsx
@@ -0,0 +1,37 @@
+'use client';
+
+import React, { createContext, use } from 'react';
+
+type User = {
+ id: string;
+ avatar?: string;
+ // Чёто там ещё
+};
+
+interface AuthContext {
+ user: User | null;
+}
+
+const AuthContext = createContext<AuthContext | null>(null);
+
+export const AuthContextProvider = ({ children }: React.PropsWithChildren) => {
+ // TODO: подключить бэк
+ const user = null;
+ return (
+ <AuthContext.Provider value={{ user }}>{children}</AuthContext.Provider>
+ );
+};
+
+export const useAuthContext = () => {
+ const context = use(AuthContext);
+
+ if (!context) {
+ throw new Error(
+ 'useAuthContext must be used within AuthContextProvider',
+ );
+ }
+
+ return context;
+};
+
+export const useUser = () => useAuthContext().user;