start
This commit is contained in:
38
frontend/src/auth/AuthContext.tsx
Normal file
38
frontend/src/auth/AuthContext.tsx
Normal file
@@ -0,0 +1,38 @@
|
||||
import { createContext, useContext, useMemo, useState, type ReactNode } from 'react'
|
||||
import { getToken, login as apiLogin, setToken as persistToken } from '../api/client'
|
||||
|
||||
interface AuthContextValue {
|
||||
isAuthenticated: boolean
|
||||
login: (username: string, password: string) => Promise<void>
|
||||
logout: () => void
|
||||
}
|
||||
|
||||
const AuthContext = createContext<AuthContextValue | null>(null)
|
||||
|
||||
export function AuthProvider({ children }: { children: ReactNode }) {
|
||||
const [token, setTokenState] = useState<string | null>(() => getToken())
|
||||
|
||||
const value = useMemo<AuthContextValue>(
|
||||
() => ({
|
||||
isAuthenticated: !!token,
|
||||
login: async (username: string, password: string) => {
|
||||
const newToken = await apiLogin(username, password)
|
||||
persistToken(newToken)
|
||||
setTokenState(newToken)
|
||||
},
|
||||
logout: () => {
|
||||
persistToken(null)
|
||||
setTokenState(null)
|
||||
},
|
||||
}),
|
||||
[token],
|
||||
)
|
||||
|
||||
return <AuthContext.Provider value={value}>{children}</AuthContext.Provider>
|
||||
}
|
||||
|
||||
export function useAuth(): AuthContextValue {
|
||||
const ctx = useContext(AuthContext)
|
||||
if (!ctx) throw new Error('useAuth must be used within AuthProvider')
|
||||
return ctx
|
||||
}
|
||||
Reference in New Issue
Block a user