Spaces:
Running
Running
| const BASE = import.meta.env.BASE_URL.replace(/\/$/, ''); | |
| const TOKEN_KEY = 'freellmapi_dashboard_token'; | |
| // Dashboard session token (#35). Stored in localStorage; sent as a Bearer on | |
| // every /api request and cleared on a 401. | |
| export function getToken(): string | null { | |
| try { return localStorage.getItem(TOKEN_KEY); } catch { return null; } | |
| } | |
| export function setToken(token: string): void { | |
| try { localStorage.setItem(TOKEN_KEY, token); } catch { /* ignore */ } | |
| } | |
| export function clearToken(): void { | |
| try { localStorage.removeItem(TOKEN_KEY); } catch { /* ignore */ } | |
| } | |
| export const UNAUTHORIZED_EVENT = 'freellmapi:unauthorized'; | |
| export async function apiFetch<T>(path: string, options?: RequestInit): Promise<T> { | |
| const token = getToken(); | |
| const res = await fetch(`${BASE}${path}`, { | |
| // `...options` first so an explicit method/body/signal applies, but headers | |
| // are merged last β otherwise an options.headers would clobber the | |
| // Content-Type and Authorization we set here. | |
| ...options, | |
| headers: { | |
| 'Content-Type': 'application/json', | |
| ...(token ? { Authorization: `Bearer ${token}` } : {}), | |
| ...options?.headers, | |
| }, | |
| }); | |
| if (res.status === 401) { | |
| // Session missing/expired β drop the token and let the AuthGate re-render. | |
| clearToken(); | |
| window.dispatchEvent(new CustomEvent(UNAUTHORIZED_EVENT)); | |
| } | |
| if (!res.ok) { | |
| const body = await res.json().catch(() => ({ error: { message: res.statusText } })); | |
| throw new Error(body.error?.message ?? `HTTP ${res.status}`); | |
| } | |
| // A 200 whose body isn't JSON means this request never reached the API β the | |
| // usual cause is a reverse proxy (or static host) serving the dashboard's | |
| // index.html for /api/* instead of forwarding it to the backend. Without this | |
| // guard the raw res.json() throws an opaque "Unexpected token '<'", which on | |
| // the setup/login form surfaces as "sign up page cannot work". Say what's | |
| // actually wrong. (#257) | |
| const text = await res.text(); | |
| try { | |
| return JSON.parse(text) as T; | |
| } catch { | |
| throw new Error( | |
| `Expected JSON from ${path} but got a non-JSON response. The API isn't reachable at this origin β ` + | |
| `make sure the backend is running and that /api is forwarded to it, not served as the dashboard's static files.`, | |
| ); | |
| } | |
| } | |
| export async function logout(): Promise<void> { | |
| try { await apiFetch('/api/auth/logout', { method: 'POST' }); } catch { /* ignore */ } | |
| clearToken(); | |
| window.dispatchEvent(new CustomEvent(UNAUTHORIZED_EVENT)); | |
| } | |