5483dd291e
- Auth system (login/register/profile) - Nur AI chat with persona system - Souq marketplace with FLH economy - Forum community with Shariah moderation - Wallet & FLH top-up - Premium/Pro tier upgrade with Polar.sh - Halal Monitor with map & bookmarks - Home dashboard with daily verse & streaks - Health endpoints Next.js 16.2.7, Prisma v5 SQLite, JWT auth, Tailwind CSS v4
122 lines
3.2 KiB
TypeScript
122 lines
3.2 KiB
TypeScript
"use client";
|
|
|
|
import { createContext, useContext, useState, useEffect, useCallback, type ReactNode } from "react";
|
|
|
|
interface User {
|
|
id: string;
|
|
email: string;
|
|
name: string;
|
|
isPremium: boolean;
|
|
isPro: boolean;
|
|
flhBalance: number;
|
|
dailyMsgCount: number;
|
|
preferredName?: string;
|
|
coachPersona?: string;
|
|
madhab?: string;
|
|
coachingGoals?: string;
|
|
createdAt?: string;
|
|
trialEndsAt?: string;
|
|
}
|
|
|
|
interface AuthContextType {
|
|
user: User | null;
|
|
token: string | null;
|
|
loading: boolean;
|
|
login: (email: string, password: string) => Promise<void>;
|
|
register: (email: string, name: string, password: string) => Promise<void>;
|
|
logout: () => void;
|
|
refreshUser: () => Promise<void>;
|
|
}
|
|
|
|
const AuthContext = createContext<AuthContextType | undefined>(undefined);
|
|
|
|
export function AuthProvider({ children }: { children: ReactNode }) {
|
|
const [user, setUser] = useState<User | null>(null);
|
|
const [token, setToken] = useState<string | null>(null);
|
|
const [loading, setLoading] = useState(true);
|
|
|
|
useEffect(() => {
|
|
const stored = localStorage.getItem("flh_token");
|
|
if (stored) {
|
|
setToken(stored);
|
|
fetchUser(stored);
|
|
} else {
|
|
setLoading(false);
|
|
}
|
|
}, []);
|
|
|
|
const fetchUser = async (t: string) => {
|
|
try {
|
|
const res = await fetch("/api/auth/me", {
|
|
headers: { Authorization: `Bearer ${t}` },
|
|
});
|
|
if (res.ok) {
|
|
const data = await res.json();
|
|
setUser(data.user);
|
|
} else {
|
|
localStorage.removeItem("flh_token");
|
|
setToken(null);
|
|
}
|
|
} catch {
|
|
// ignore
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
const login = useCallback(async (email: string, password: string) => {
|
|
const res = await fetch("/api/auth/login", {
|
|
method: "POST",
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify({ email, password }),
|
|
});
|
|
if (!res.ok) {
|
|
const err = await res.json();
|
|
throw new Error(err.error || "Login failed");
|
|
}
|
|
const data = await res.json();
|
|
localStorage.setItem("flh_token", data.token);
|
|
setToken(data.token);
|
|
setUser(data.user);
|
|
}, []);
|
|
|
|
const register = useCallback(async (email: string, name: string, password: string) => {
|
|
const res = await fetch("/api/auth/register", {
|
|
method: "POST",
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify({ email, name, password }),
|
|
});
|
|
if (!res.ok) {
|
|
const err = await res.json();
|
|
throw new Error(err.error || "Registration failed");
|
|
}
|
|
const data = await res.json();
|
|
localStorage.setItem("flh_token", data.token);
|
|
setToken(data.token);
|
|
setUser(data.user);
|
|
}, []);
|
|
|
|
const logout = useCallback(() => {
|
|
localStorage.removeItem("flh_token");
|
|
setToken(null);
|
|
setUser(null);
|
|
}, []);
|
|
|
|
const refreshUser = useCallback(async () => {
|
|
if (!token) return;
|
|
await fetchUser(token);
|
|
}, [token]);
|
|
|
|
return (
|
|
<AuthContext.Provider value={{ user, token, loading, login, register, logout, refreshUser }}>
|
|
{children}
|
|
</AuthContext.Provider>
|
|
);
|
|
}
|
|
|
|
export function useAuth() {
|
|
const ctx = useContext(AuthContext);
|
|
if (!ctx) throw new Error("useAuth must be used within AuthProvider");
|
|
return ctx;
|
|
}
|