auth querying consolidation

This commit is contained in:
Michael Freno
2026-01-06 23:26:51 -05:00
parent 08a9ad35af
commit 445ab6d7de
10 changed files with 224 additions and 91 deletions

94
src/context/auth.tsx Normal file
View File

@@ -0,0 +1,94 @@
/**
* Auth Context Provider
* Provides convenient access to auth state throughout the app
*
* Security Note:
* - Context is for UI display only (showing/hiding buttons, user email, etc.)
* - Server endpoints ALWAYS validate independently from cookies
* - Never trust client-side state for authorization decisions
*/
import { createContext, useContext, Accessor, ParentComponent } from "solid-js";
import { createAsync } from "@solidjs/router";
import { getUserState, revalidateAuth, type UserState } from "~/lib/auth-query";
interface AuthContextType {
/** Current user state (for UI display) */
userState: Accessor<UserState | undefined>;
/** Is user authenticated (convenience) */
isAuthenticated: Accessor<boolean>;
/** User email (null if not authenticated) */
email: Accessor<string | null>;
/** User display name (null if not set) */
displayName: Accessor<string | null>;
/** User ID (null if not authenticated) */
userId: Accessor<string | null>;
/** Is user admin (for UI display only - server still validates) */
isAdmin: Accessor<boolean>;
/** Is email verified */
isEmailVerified: Accessor<boolean>;
/** Refresh auth state from server */
refreshAuth: () => void;
}
const AuthContext = createContext<AuthContextType>();
export const AuthProvider: ParentComponent = (props) => {
// Get server state via SolidStart query
const serverAuth = createAsync(() => getUserState());
// Convenience accessors with safe defaults
const isAuthenticated = () => serverAuth()?.isAuthenticated ?? false;
const email = () => serverAuth()?.email ?? null;
const displayName = () => serverAuth()?.displayName ?? null;
const userId = () => serverAuth()?.userId ?? null;
const isAdmin = () => serverAuth()?.privilegeLevel === "admin";
const isEmailVerified = () => serverAuth()?.emailVerified ?? false;
const value: AuthContextType = {
userState: serverAuth,
isAuthenticated,
email,
displayName,
userId,
isAdmin,
isEmailVerified,
refreshAuth: revalidateAuth
};
return (
<AuthContext.Provider value={value}>{props.children}</AuthContext.Provider>
);
};
/**
* Hook to access auth state anywhere in the app
*
* @example
* ```tsx
* function MyComponent() {
* const { isAuthenticated, email, refreshAuth } = useAuth();
*
* return (
* <Show when={isAuthenticated()}>
* <p>Welcome, {email()}!</p>
* <button onClick={() => refreshAuth()}>Refresh</button>
* </Show>
* );
* }
* ```
*/
export function useAuth() {
const context = useContext(AuthContext);
if (!context) {
throw new Error("useAuth must be used within AuthProvider");
}
return context;
}