- Implement tests for ImportSuccessModal to verify rendering and functionality. - Update AuthContext to store authentication token in localStorage and manage token state. - Modify useImport hook to capture and expose commit results, preventing unnecessary refetches. - Enhance useCertificates hook to support optional refetch intervals. - Update Dashboard to conditionally poll certificates based on pending status. - Integrate ImportSuccessModal into ImportCaddy for user feedback on import completion. - Adjust Login component to utilize returned token for authentication. - Refactor CrowdSecConfig tests for improved readability and reliability. - Add debug_db.py script for inspecting the SQLite database. - Update integration and test scripts for better configuration and error handling. - Introduce Trivy scan script for vulnerability assessment of Docker images.
20 lines
473 B
TypeScript
20 lines
473 B
TypeScript
import { createContext } from 'react';
|
|
|
|
export interface User {
|
|
user_id: number;
|
|
role: string;
|
|
name?: string;
|
|
email?: string;
|
|
}
|
|
|
|
export interface AuthContextType {
|
|
user: User | null;
|
|
login: (token?: string) => Promise<void>;
|
|
logout: () => void;
|
|
changePassword: (oldPassword: string, newPassword: string) => Promise<void>;
|
|
isAuthenticated: boolean;
|
|
isLoading: boolean;
|
|
}
|
|
|
|
export const AuthContext = createContext<AuthContextType | undefined>(undefined);
|