New shared primitives: - Toaster + toast-store, ConfirmSheet, Modal, focusTrap action, pullToRefresh action, avatarPalette + initials helper, Skeleton, HeartBurst, haptics, export-status store with onClearAuth hook Critical UX/a11y: - Replaced window.confirm with branded ConfirmSheet - Focus management + Escape on every modal (PIN, Lightbox, Onboarding, ContextSheet, data-mode sheet, leave-confirm, HTML guide, host/admin ban + PIN-display modals) - Sheet backdrops are real buttons with aria-label - Silent ApiError catches now surface via global Toaster Major polish: - Dark-mode parity on HashtagChips + avatars (shared palette) - Conditional Export tab in BottomNav (badge dot when ZIP ready) - Back chevrons on /recover (history-aware) and /export - Upload composer discard confirmation when content is staged - Camera segmented Photo/Video shutter - PIN auto-submit on 4th digit, paste-flash-free (controlled input) - Welcome-back toast on /feed after PIN recovery Minor: - Skeleton states on feed; pull-to-refresh with live drag indicator - Haptics on like / capture / submit / PIN-copy / onboarding complete - Comment 500-char counter; quota "Fast voll" / "Limit erreicht" labels - Onboarding pip ≥24px tap targets; long-press hint step - overscroll-behavior lock on <html> while feed mounted - teardownExportStatus wired via onClearAuth (covers 401 + explicit logout) - ConfirmSheet per-instance titleId; Modal requires titleId or ariaLabel Tests (7 new Playwright specs): - 01-auth/pin-auto-submit, 01-auth/back-chevron - 03-feed/confirm-sheet-delete, 03-feed/toast-on-failure - 09-mobile/focus-trap, 09-mobile/sheet-escape, 09-mobile/upload-cancel-confirm FOLLOWUPS.md captures the deferred AT inert containment work with acceptance criteria + implementation sketches. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
54 lines
2.2 KiB
TypeScript
54 lines
2.2 KiB
TypeScript
/**
|
|
* The toast store + <Toaster> primitive surfaces ApiError messages on
|
|
* user-initiated actions that previously failed silently (catch { ignore }).
|
|
* This spec intercepts the like POST and forces a 429 to assert the German
|
|
* error message reaches the user via the global toast region.
|
|
*/
|
|
import { test, expect } from '../../fixtures/test';
|
|
import { uploadRaw } from '../../helpers/upload-client';
|
|
import { readFileSync } from 'node:fs';
|
|
import { join } from 'node:path';
|
|
|
|
const SAMPLE_JPG = join(process.cwd(), 'fixtures', 'media', 'sample.jpg');
|
|
|
|
async function seedUpload(token: string): Promise<{ id: string }> {
|
|
const res = await uploadRaw(token, readFileSync(SAMPLE_JPG), {
|
|
filename: 'tf.jpg',
|
|
contentType: 'image/jpeg',
|
|
caption: 'Toast fixture',
|
|
});
|
|
if (res.status !== 201) throw new Error(`Upload seed failed (${res.status})`);
|
|
return (await res.json()) as { id: string };
|
|
}
|
|
|
|
test.describe('Feed — error toast on user action failures', () => {
|
|
test('like POST 429 surfaces a German error toast', async ({ page, guest, signIn }) => {
|
|
const author = await guest('ToastAuthor');
|
|
const liker = await guest('ToastLiker');
|
|
await seedUpload(author.jwt);
|
|
await signIn(page, liker);
|
|
|
|
// Intercept the like endpoint with a forced rate-limit response.
|
|
await page.route('**/api/v1/upload/*/like', (route) =>
|
|
route.fulfill({
|
|
status: 429,
|
|
contentType: 'application/json',
|
|
body: JSON.stringify({ error: 'rate_limited', message: 'Zu viele Anfragen — bitte kurz warten.' }),
|
|
})
|
|
);
|
|
|
|
await page.goto('/feed');
|
|
const card = page.locator('article').filter({ hasText: author.displayName }).first();
|
|
await expect(card).toBeVisible({ timeout: 10_000 });
|
|
|
|
// Click the like button in the actions row — first visible match inside the card.
|
|
await card.locator('button').filter({ hasText: /\d+/ }).first().click();
|
|
|
|
// The toast is rendered inside the global Toaster region with aria-live="polite".
|
|
const toast = page.getByTestId('toast').first();
|
|
await expect(toast).toBeVisible({ timeout: 3_000 });
|
|
await expect(toast).toContainText(/Zu viele Anfragen/i);
|
|
await expect(toast).toHaveAttribute('data-toast-tone', 'error');
|
|
});
|
|
});
|