Plan step 36. <x-badge> renders data-md-badge with data-md-dot, data-md-variant (solid, tonal or outline, resolved in that order), data-md-color and data-md-floating; badge.css draws BadgeTokens' dot and count, the status label, each colour's pair of roles through custom properties, and M3's anchor geometry when floating. A plain badge sets no colour, so the caller's CSS paints it. NavigationBarTest (navigation group) asserts the dot by data-md-dot. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Qwx5USif3wFFmxtHg5U1g9
146 lines
8.1 KiB
PHP
146 lines
8.1 KiB
PHP
<?php
|
|
|
|
use NoNameWeb\LivewireMaterial\Tests\Support\ComponentStylesheet;
|
|
|
|
/**
|
|
* The attributes of the rendered badge, by name.
|
|
*
|
|
* @return array<string, string>
|
|
*/
|
|
function badgeAttributes(string $blade): array
|
|
{
|
|
preg_match('/<span\b([^>]*)>/', (string) test()->blade($blade), $tag);
|
|
preg_match_all('/([\w:-]+)="([^"]*)"/', $tag[1] ?? '', $pairs, PREG_SET_ORDER);
|
|
|
|
return collect($pairs)->mapWithKeys(fn (array $pair): array => [$pair[1] => $pair[2]])->all();
|
|
}
|
|
|
|
it('is M3\'s small badge without a value, hidden from screen readers', function () {
|
|
expect(badgeAttributes('<x-badge />'))->toBe([
|
|
'data-md-badge' => 'data-md-badge',
|
|
'data-md-dot' => 'data-md-dot',
|
|
'data-md-color' => 'error',
|
|
'aria-hidden' => 'true',
|
|
])
|
|
->and(ComponentStylesheet::read('badge')->declarations('[data-md-badge][data-md-dot]'))->toBe([
|
|
'inline-size' => '6px',
|
|
'block-size' => '6px',
|
|
'border-radius' => 'var(--md-sys-shape-corner-full)',
|
|
]);
|
|
});
|
|
|
|
it('is M3\'s large badge with a count, capped by max', function () {
|
|
$css = ComponentStylesheet::read('badge');
|
|
|
|
expect((string) $this->blade('<x-badge value="4" />'))->toContain('>4</span>')->not->toContain('data-md-dot')->not->toContain('data-md-variant')
|
|
->and((string) $this->blade('<x-badge value="1204" max="999" />'))->toContain('>999+</span>')
|
|
->and((string) $this->blade('<x-badge value="12" max="999" color="primary" />'))->toContain('>12</span>')->toContain('data-md-color="primary"')
|
|
->and($css->declarations('[data-md-badge]:not([data-md-dot], [data-md-variant])'))->toMatchArray([
|
|
'min-inline-size' => '16px',
|
|
'block-size' => '16px',
|
|
'border-radius' => 'var(--md-sys-shape-corner-full)',
|
|
'padding-inline' => 'var(--md-sys-measurement-space50)',
|
|
'font' => 'var(--md-sys-typescale-label-sm)',
|
|
'font-variant-numeric' => 'tabular-nums',
|
|
]);
|
|
});
|
|
|
|
it('pins itself to the corner of an icon when floating', function () {
|
|
$css = ComponentStylesheet::read('badge');
|
|
|
|
expect((string) $this->blade('<x-badge floating />'))->toContain('data-md-floating')
|
|
->and(badgeAttributes('<x-badge value="3" floating label="3 new messages" />'))
|
|
->toMatchArray(['data-md-floating' => 'data-md-floating', 'aria-label' => '3 new messages'])
|
|
->not->toHaveKey('aria-hidden')
|
|
->and($css->declarations('[data-md-badge][data-md-floating]'))->toBe([
|
|
'position' => 'absolute',
|
|
'inset-block-start' => 'calc(-1 * var(--md-sys-measurement-space25))',
|
|
'inset-inline-start' => 'calc(100% - 12px)',
|
|
])
|
|
->and($css->declarations('[data-md-badge][data-md-floating][data-md-dot]'))->toBe(['inset-block-start' => '0', 'inset-inline' => 'auto 0']);
|
|
});
|
|
|
|
it('draws a status label in a container or an outline, spoken like any label', function () {
|
|
$css = ComponentStylesheet::read('badge');
|
|
|
|
expect(badgeAttributes('<x-badge value="Active" tone="success" tonal />'))
|
|
->toBe(['data-md-badge' => 'data-md-badge', 'data-md-variant' => 'tonal', 'data-md-color' => 'success'])
|
|
->and(badgeAttributes('<x-badge value="Pro" outline />'))
|
|
->toBe(['data-md-badge' => 'data-md-badge', 'data-md-variant' => 'outline', 'data-md-color' => 'error'])
|
|
->and($css->declarations('[data-md-badge][data-md-variant]'))->toMatchArray([
|
|
'gap' => 'var(--md-sys-measurement-space50)',
|
|
'block-size' => '24px',
|
|
'border-radius' => 'var(--md-sys-shape-corner-sm)',
|
|
'padding-inline' => 'var(--md-sys-measurement-space100)',
|
|
'font' => 'var(--md-sys-typescale-label-md)',
|
|
])
|
|
->and($css->declarations("[data-md-badge]:not([data-md-color='plain'])[data-md-variant='tonal']"))->toBe([
|
|
'background-color' => 'var(--md-badge-container)',
|
|
'color' => 'var(--md-badge-on-container)',
|
|
])
|
|
// The outline role, not outline-variant: a badge needs 3:1 against what is behind it.
|
|
->and($css->declarations("[data-md-badge]:not([data-md-color='plain'])[data-md-variant='outline']"))->toBe([
|
|
'border-color' => 'var(--md-sys-color-outline)',
|
|
'background-color' => 'transparent',
|
|
'color' => 'var(--md-sys-color-on-surface-variant)',
|
|
])
|
|
->and($css->declarations("[data-md-badge][data-md-variant='outline']"))->toBe(['border' => '1px solid']);
|
|
});
|
|
|
|
it('resolves solid over tonal, and either over outline', function () {
|
|
expect(badgeAttributes('<x-badge value="Built in" solid tonal outline color="primary" />'))->toMatchArray(['data-md-variant' => 'solid', 'data-md-color' => 'primary'])
|
|
->and(badgeAttributes('<x-badge value="Built in" tonal outline />'))->toMatchArray(['data-md-variant' => 'tonal'])
|
|
->and(badgeAttributes('<x-badge solid />'))->toMatchArray(['data-md-dot' => 'data-md-dot'])->not->toHaveKey('data-md-variant')
|
|
->and((string) $this->blade('<x-badge value="Built in" solid color="primary" />'))->toContain('>Built in<')->not->toContain('aria-hidden');
|
|
});
|
|
|
|
it('renders its slot as HTML, and is a dot while the slot holds nothing but comments', function () {
|
|
$html = (string) $this->blade('<x-badge tonal><x-icon name="bolt" size="12" /> Pro</x-badge>');
|
|
|
|
expect($html)
|
|
->toContain('data-md-variant="tonal"')
|
|
->toContain('<svg')
|
|
->toContain(' Pro</span>')
|
|
->not->toContain('<svg')
|
|
->and((string) $this->blade('<x-badge value="<b>4</b>" />'))->toContain('<b>4</b>')
|
|
->and((string) $this->blade("<x-badge tonal>\n <!-- nothing yet -->\n</x-badge>"))->toContain('data-md-dot')
|
|
->and((string) $this->blade('<x-badge max="99">120</x-badge>'))->toContain('>99+</span>');
|
|
});
|
|
|
|
it('paints each colour from its pair of roles, and neutral without a hue', function (string $color, array $roles) {
|
|
expect(ComponentStylesheet::read('badge')->declarations("[data-md-badge][data-md-color='{$color}']"))->toBe([
|
|
'--md-badge-color' => "var(--md-sys-color-{$roles[0]})",
|
|
'--md-badge-on-color' => "var(--md-sys-color-{$roles[1]})",
|
|
'--md-badge-container' => "var(--md-sys-color-{$roles[2]})",
|
|
'--md-badge-on-container' => "var(--md-sys-color-{$roles[3]})",
|
|
]);
|
|
})->with([
|
|
'primary' => ['primary', ['primary', 'on-primary', 'primary-container', 'on-primary-container']],
|
|
'secondary' => ['secondary', ['secondary', 'on-secondary', 'secondary-container', 'on-secondary-container']],
|
|
'tertiary' => ['tertiary', ['tertiary', 'on-tertiary', 'tertiary-container', 'on-tertiary-container']],
|
|
'success' => ['success', ['success', 'on-success', 'success-container', 'on-success-container']],
|
|
'warning' => ['warning', ['warning', 'on-warning', 'warning-container', 'on-warning-container']],
|
|
'info' => ['info', ['info', 'on-info', 'info-container', 'on-info-container']],
|
|
'neutral' => ['neutral', ['on-surface-variant', 'surface', 'surface-container-high', 'on-surface-variant']],
|
|
]);
|
|
|
|
it('is error by default, and falls back to error on a colour it does not know', function () {
|
|
$css = ComponentStylesheet::read('badge');
|
|
|
|
expect($css->declarations('[data-md-badge]'))->toMatchArray([
|
|
'--md-badge-color' => 'var(--md-sys-color-error)',
|
|
'--md-badge-on-color' => 'var(--md-sys-color-on-error)',
|
|
])
|
|
->and($css->declarations("[data-md-badge]:not([data-md-color='plain'])"))->toBe([
|
|
'background-color' => 'var(--md-badge-color)',
|
|
'color' => 'var(--md-badge-on-color)',
|
|
])
|
|
->and(badgeAttributes('<x-badge value="3" color="sport-run" />'))->toMatchArray(['data-md-color' => 'error']);
|
|
});
|
|
|
|
it('leaves a plain badge, and every colour, to the caller\'s CSS', function () {
|
|
// `plain` matches none of the colour rules; a caller's class lands on the root untouched.
|
|
expect(badgeAttributes('<x-badge value="Run" color="plain" tonal class="bg-tertiary-container text-on-tertiary-container" />'))
|
|
->toMatchArray(['data-md-color' => 'plain', 'data-md-variant' => 'tonal', 'class' => 'bg-tertiary-container text-on-tertiary-container']);
|
|
});
|