fix(document): make the PDF error state accessible (alert + larger link)
All checks were successful
CI / Unit & Component Tests (pull_request) Successful in 3m20s
CI / OCR Service Tests (pull_request) Successful in 22s
CI / Backend Unit Tests (pull_request) Successful in 3m42s
CI / fail2ban Regex (pull_request) Successful in 46s
CI / Semgrep Security Scan (pull_request) Successful in 22s
CI / Compose Bucket Idempotency (pull_request) Successful in 1m7s

The error block was a colour-only, visually-small dead end. Add
role="alert" so screen readers announce the failure, bump the message to
text-base and the recovery download link to text-sm with a py-2 tap
target — the only escape hatch, sized for the archive's older readers.

Addresses re-review: Leonie (a11y of the error state).

Refs #708

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Marcel
2026-06-01 20:44:56 +02:00
committed by marcel
parent 229c1b0539
commit e16b7402bd
2 changed files with 12 additions and 3 deletions

View File

@@ -170,13 +170,20 @@ function handleAnnotationClick(id: string) {
<p class="font-sans text-sm">Keine Datei vorhanden</p> <p class="font-sans text-sm">Keine Datei vorhanden</p>
</div> </div>
{:else if renderer.error} {:else if renderer.error}
<div class="flex h-full w-full flex-col items-center justify-center gap-3 bg-pdf-bg text-ink-3"> <!-- role="alert" announces the failure to screen readers; the message text
<p class="font-sans text-sm text-red-400">{m.doc_render_failed()}</p> (not colour alone) carries the meaning. The download link is the only
recovery action, so it is sized as a comfortable tap/focus target for
the archive's older readers. -->
<div
role="alert"
class="flex h-full w-full flex-col items-center justify-center gap-3 bg-pdf-bg px-4 text-center text-ink-3"
>
<p class="font-sans text-base text-red-400">{m.doc_render_failed()}</p>
<a <a
href={url} href={url}
target="_blank" target="_blank"
rel="noopener noreferrer" rel="noopener noreferrer"
class="font-sans text-xs text-primary underline hover:text-ink-2" class="inline-block py-2 font-sans text-sm text-primary underline hover:text-ink-2"
> >
{m.doc_download_link()} {m.doc_download_link()}
</a> </a>

View File

@@ -44,6 +44,8 @@ describe('PdfViewer — render failure', () => {
await expect.element(page.getByText(m.doc_render_failed())).toBeVisible(); await expect.element(page.getByText(m.doc_render_failed())).toBeVisible();
await expect.element(page.getByRole('link', { name: m.doc_download_link() })).toBeVisible(); await expect.element(page.getByRole('link', { name: m.doc_download_link() })).toBeVisible();
// Announced to assistive tech, not a silent visual-only failure.
await expect.element(page.getByRole('alert')).toBeVisible();
}); });
it('does not show the failure message when the page renders successfully', async () => { it('does not show the failure message when the page renders successfully', async () => {