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>
43 lines
1.6 KiB
TypeScript
43 lines
1.6 KiB
TypeScript
/**
|
|
* UX fix — tapping X on the upload composer used to silently discard
|
|
* staged files + caption. Now opens a ConfirmSheet so a mistap from the
|
|
* corner is recoverable.
|
|
*/
|
|
import { test, expect } from '../../fixtures/test';
|
|
|
|
test.describe('Mobile — upload composer cancel confirmation', () => {
|
|
test('typing a caption then tapping X opens the discard ConfirmSheet', async ({ page, guest, signIn }) => {
|
|
const g = await guest('CancelConf');
|
|
await signIn(page, g);
|
|
|
|
// Land on /upload directly (no staged files; the pending-upload-store is
|
|
// empty). Typing into the caption flips the dirty flag.
|
|
await page.goto('/upload');
|
|
|
|
const caption = page.getByTestId('upload-caption');
|
|
await expect(caption).toBeVisible();
|
|
await caption.fill('a meaningful caption that I do not want to lose');
|
|
|
|
// Tap the close (X) button in the composer header.
|
|
await page.getByRole('button', { name: 'Abbrechen' }).click();
|
|
|
|
const sheet = page.getByTestId('confirm-sheet');
|
|
await expect(sheet).toBeVisible();
|
|
await expect(sheet).toContainText(/Verwerfen/);
|
|
|
|
// Cancel — sheet closes, caption is preserved.
|
|
await page.getByTestId('confirm-sheet-cancel').click();
|
|
await expect(sheet).not.toBeVisible();
|
|
await expect(caption).toHaveValue(/a meaningful caption/);
|
|
});
|
|
|
|
test('with no content, tapping X navigates directly to /feed', async ({ page, guest, signIn }) => {
|
|
const g = await guest('CancelEmpty');
|
|
await signIn(page, g);
|
|
await page.goto('/upload');
|
|
|
|
await page.getByRole('button', { name: 'Abbrechen' }).click();
|
|
await page.waitForURL('**/feed', { timeout: 3_000 });
|
|
});
|
|
});
|