feat(admin): bearer auth with admin-only gate + login screen
This commit is contained in:
@@ -1,3 +1,20 @@
|
||||
export default function App() {
|
||||
import { AuthProvider, useAuth } from './auth/AuthContext';
|
||||
import Login from './screens/Login';
|
||||
|
||||
function AuthedShell() {
|
||||
// Placeholder shell — replaced by the sidebar + routing in Task 4.
|
||||
return <div>SoleLog Admin</div>;
|
||||
}
|
||||
|
||||
function Gate() {
|
||||
const { isAuthed } = useAuth();
|
||||
return isAuthed ? <AuthedShell /> : <Login />;
|
||||
}
|
||||
|
||||
export default function App() {
|
||||
return (
|
||||
<AuthProvider>
|
||||
<Gate />
|
||||
</AuthProvider>
|
||||
);
|
||||
}
|
||||
|
||||
16
apps/admin/src/api/me.ts
Normal file
16
apps/admin/src/api/me.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
import { useQuery } from '@tanstack/react-query';
|
||||
import type { MeResponse } from '@solelog/shared';
|
||||
import { apiFetch } from '../lib/api';
|
||||
|
||||
// Fetch the signed-in user (id, email, name, role).
|
||||
export function fetchMe(): Promise<MeResponse> {
|
||||
return apiFetch<MeResponse>('/api/me');
|
||||
}
|
||||
|
||||
// react-query wrapper around fetchMe; used by authed screens (e.g. the shell header).
|
||||
export function useMe() {
|
||||
return useQuery({
|
||||
queryKey: ['me'],
|
||||
queryFn: fetchMe,
|
||||
});
|
||||
}
|
||||
92
apps/admin/src/auth/AuthContext.test.tsx
Normal file
92
apps/admin/src/auth/AuthContext.test.tsx
Normal file
@@ -0,0 +1,92 @@
|
||||
import { render, screen, waitFor } from '@testing-library/react';
|
||||
import userEvent from '@testing-library/user-event';
|
||||
import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest';
|
||||
import { AuthProvider, useAuth } from './AuthContext';
|
||||
import { fetchMe } from '../api/me';
|
||||
import { signIn as apiSignIn } from '../lib/api';
|
||||
import { clearToken, getToken, setToken } from '../lib/auth-storage';
|
||||
|
||||
// Mock the network layer so no real requests are made.
|
||||
vi.mock('../lib/api', () => ({
|
||||
signIn: vi.fn(),
|
||||
}));
|
||||
vi.mock('../api/me', () => ({
|
||||
fetchMe: vi.fn(),
|
||||
}));
|
||||
|
||||
const mockedSignIn = vi.mocked(apiSignIn);
|
||||
const mockedFetchMe = vi.mocked(fetchMe);
|
||||
|
||||
// A tiny harness that exposes the auth context's state + signIn.
|
||||
function Harness() {
|
||||
const { isAuthed, signIn } = useAuth();
|
||||
return (
|
||||
<div>
|
||||
<span data-testid="authed">{String(isAuthed)}</span>
|
||||
<button
|
||||
type="button"
|
||||
onClick={() => {
|
||||
signIn('user@solelog.local', 'pw').catch((err) => {
|
||||
const el = document.getElementById('err');
|
||||
if (el) el.textContent = err instanceof Error ? err.message : String(err);
|
||||
});
|
||||
}}
|
||||
>
|
||||
go
|
||||
</button>
|
||||
<span id="err" />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
function renderHarness() {
|
||||
return render(
|
||||
<AuthProvider>
|
||||
<Harness />
|
||||
</AuthProvider>
|
||||
);
|
||||
}
|
||||
|
||||
describe('AuthContext admin gate', () => {
|
||||
beforeEach(() => {
|
||||
mockedSignIn.mockReset();
|
||||
mockedFetchMe.mockReset();
|
||||
// signIn stores a token (mirror the real lib/api behaviour).
|
||||
mockedSignIn.mockImplementation(async () => {
|
||||
setToken('tok');
|
||||
});
|
||||
});
|
||||
|
||||
afterEach(() => {
|
||||
clearToken();
|
||||
vi.clearAllMocks();
|
||||
});
|
||||
|
||||
it('signs in an admin: isAuthed becomes true, token kept', async () => {
|
||||
mockedFetchMe.mockResolvedValue({
|
||||
user: { id: 'a1', email: 'admin@solelog.local', name: 'Admin', role: 'admin' },
|
||||
});
|
||||
const user = userEvent.setup();
|
||||
renderHarness();
|
||||
expect(screen.getByTestId('authed')).toHaveTextContent('false');
|
||||
|
||||
await user.click(screen.getByRole('button', { name: 'go' }));
|
||||
|
||||
await waitFor(() => expect(screen.getByTestId('authed')).toHaveTextContent('true'));
|
||||
expect(getToken()).toBe('tok');
|
||||
});
|
||||
|
||||
it('rejects a worker: throws not-admin, clears the token, stays unauthed', async () => {
|
||||
mockedFetchMe.mockResolvedValue({
|
||||
user: { id: 'w1', email: 'worker@solelog.local', name: 'Werker', role: 'worker' },
|
||||
});
|
||||
const user = userEvent.setup();
|
||||
renderHarness();
|
||||
|
||||
await user.click(screen.getByRole('button', { name: 'go' }));
|
||||
|
||||
await waitFor(() => expect(document.getElementById('err')).toHaveTextContent('not-admin'));
|
||||
expect(getToken()).toBeNull();
|
||||
expect(screen.getByTestId('authed')).toHaveTextContent('false');
|
||||
});
|
||||
});
|
||||
50
apps/admin/src/auth/AuthContext.tsx
Normal file
50
apps/admin/src/auth/AuthContext.tsx
Normal file
@@ -0,0 +1,50 @@
|
||||
import { createContext, useCallback, useContext, useState, type ReactNode } from 'react';
|
||||
import { clearToken, getToken } from '../lib/auth-storage';
|
||||
import { signIn as apiSignIn } from '../lib/api';
|
||||
import { fetchMe } from '../api/me';
|
||||
|
||||
// Thrown by signIn when the authenticated user is not an admin. Login distinguishes it
|
||||
// from a plain auth failure to show a different message.
|
||||
export class NotAdminError extends Error {
|
||||
constructor() {
|
||||
super('not-admin');
|
||||
this.name = 'NotAdminError';
|
||||
}
|
||||
}
|
||||
|
||||
interface AuthContextValue {
|
||||
isAuthed: boolean;
|
||||
signIn: (email: string, password: string) => Promise<void>;
|
||||
signOut: () => void;
|
||||
}
|
||||
|
||||
const AuthContext = createContext<AuthContextValue | null>(null);
|
||||
|
||||
export function AuthProvider({ children }: { children: ReactNode }) {
|
||||
const [isAuthed, setIsAuthed] = useState<boolean>(() => getToken() !== null);
|
||||
|
||||
const signIn = useCallback(async (email: string, password: string) => {
|
||||
await apiSignIn(email, password);
|
||||
const me = await fetchMe();
|
||||
if (me.user.role !== 'admin') {
|
||||
clearToken();
|
||||
throw new NotAdminError();
|
||||
}
|
||||
setIsAuthed(true);
|
||||
}, []);
|
||||
|
||||
const signOut = useCallback(() => {
|
||||
clearToken();
|
||||
setIsAuthed(false);
|
||||
}, []);
|
||||
|
||||
return (
|
||||
<AuthContext.Provider value={{ isAuthed, signIn, signOut }}>{children}</AuthContext.Provider>
|
||||
);
|
||||
}
|
||||
|
||||
export function useAuth(): AuthContextValue {
|
||||
const ctx = useContext(AuthContext);
|
||||
if (!ctx) throw new Error('useAuth must be used within an AuthProvider');
|
||||
return ctx;
|
||||
}
|
||||
57
apps/admin/src/screens/Login.tsx
Normal file
57
apps/admin/src/screens/Login.tsx
Normal file
@@ -0,0 +1,57 @@
|
||||
import { useState, type FormEvent } from 'react';
|
||||
import { NotAdminError, useAuth } from '../auth/AuthContext';
|
||||
|
||||
export default function Login() {
|
||||
const { signIn } = useAuth();
|
||||
const [email, setEmail] = useState('');
|
||||
const [password, setPassword] = useState('');
|
||||
const [error, setError] = useState<string | null>(null);
|
||||
const [busy, setBusy] = useState(false);
|
||||
|
||||
async function handleSubmit(e: FormEvent) {
|
||||
e.preventDefault();
|
||||
setError(null);
|
||||
setBusy(true);
|
||||
try {
|
||||
await signIn(email, password);
|
||||
} catch (err) {
|
||||
setError(
|
||||
err instanceof NotAdminError ? 'Geen toegang — alleen beheerders.' : 'Inloggen mislukt'
|
||||
);
|
||||
} finally {
|
||||
setBusy(false);
|
||||
}
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="login">
|
||||
<h1 className="login-title">SoleLog Admin</h1>
|
||||
<form className="login-form" onSubmit={handleSubmit}>
|
||||
<label className="field">
|
||||
<span className="field-label">E-mailadres</span>
|
||||
<input
|
||||
className="field-input"
|
||||
type="email"
|
||||
autoComplete="email"
|
||||
value={email}
|
||||
onChange={(e) => setEmail(e.target.value)}
|
||||
/>
|
||||
</label>
|
||||
<label className="field">
|
||||
<span className="field-label">Wachtwoord</span>
|
||||
<input
|
||||
className="field-input"
|
||||
type="password"
|
||||
autoComplete="current-password"
|
||||
value={password}
|
||||
onChange={(e) => setPassword(e.target.value)}
|
||||
/>
|
||||
</label>
|
||||
{error && <p className="login-error">{error}</p>}
|
||||
<button className="btn-primary" type="submit" disabled={busy}>
|
||||
Inloggen
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user