tests / lint (push) Has been cancelled
tests / feature (8.4) (push) Has been cancelled
tests / feature (8.5) (push) Has been cancelled
tests / browser (chrome, chromium) (push) Has been cancelled
tests / browser (firefox, firefox) (push) Has been cancelled
tests / browser (safari, webkit) (push) Has been cancelled
The showcase is now an overview and one page per section behind a grouped navigation rail, moved between with wire:navigate, instead of one long page under a scrolling top bar. The switch exposed a WebKit bug in the menu: inside a focusable region, WebKit moves focus out of the closing popover before its toggle event, so Escape no longer returned focus to the trigger. The menu now reads it on beforetoggle. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01V9NnLxnPp8vaaurb3Z1MFy
50 lines
2.6 KiB
PHP
50 lines
2.6 KiB
PHP
<?php
|
|
|
|
const SNACKBAR = "document.querySelector('[x-data=\"materialSnackbar\"] [aria-live]')";
|
|
|
|
it('shows a toast as a snackbar, then the next in turn', function () {
|
|
$page = visit('/material/communication')->waitForEvent('networkidle')
|
|
->assertScript("document.readyState === 'complete' && typeof window.Alpine !== 'undefined' && typeof window.Livewire !== 'undefined'");
|
|
|
|
$page->script("materialToast('First', { type: 'success', timeout: 600 }); materialToast('Second', { type: 'error' })");
|
|
|
|
$page->assertScript(SNACKBAR."?.textContent.includes('First')")
|
|
->assertScript(SNACKBAR."?.getAttribute('role') === 'status'");
|
|
|
|
$page->wait(1.2);
|
|
|
|
$page->assertScript(SNACKBAR."?.textContent.includes('Second')")
|
|
->assertScript(SNACKBAR."?.getAttribute('role') === 'alert'");
|
|
});
|
|
|
|
it('shows a toast dispatched as a browser event, as the Toasts concern does', function () {
|
|
$page = visit('/material/communication')->waitForEvent('networkidle')
|
|
->assertScript("document.readyState === 'complete' && typeof window.Alpine !== 'undefined' && typeof window.Livewire !== 'undefined'");
|
|
|
|
// Through Livewire, in the page's own realm: an event built inside Playwright's evaluate
|
|
// carries a detail object Firefox's sandbox will not let the page read.
|
|
$page->script("window.eval(\"Livewire.dispatch('toast', { type: 'info', title: 'Link copied', description: null, timeout: 4000 })\")");
|
|
|
|
$page->assertScript(SNACKBAR."?.textContent.includes('Link copied')");
|
|
});
|
|
|
|
it('runs a toast\'s action and dismisses it', function () {
|
|
$page = visit('/material/communication')->waitForEvent('networkidle')
|
|
->assertScript("document.readyState === 'complete' && typeof window.Alpine !== 'undefined' && typeof window.Livewire !== 'undefined'");
|
|
|
|
$page->script("window.__undone = false; materialToast('Share deleted', { action: { label: 'Undo', handler: () => window.__undone = true } })");
|
|
|
|
$page->click('[x-data="materialSnackbar"] button:has-text("Undo")')
|
|
->assertScript('window.__undone === true')
|
|
->assertScript(SNACKBAR.' === null');
|
|
});
|
|
|
|
it('opens a persistent rich tooltip on press', function () {
|
|
$bubble = "document.querySelector('#communication [role=\"dialog\"][popover]')";
|
|
|
|
visit('/material/communication')->waitForEvent('networkidle')
|
|
->assertScript("document.readyState === 'complete' && typeof window.Alpine !== 'undefined' && typeof window.Livewire !== 'undefined'")
|
|
->click('#communication button:has-text("Press for details")')
|
|
->assertScript("{$bubble}.matches(':popover-open')");
|
|
});
|