mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-23 10:25:50 +00:00
feat(ui): Shadow UI redesign, domain management, and DNS autoconfigure (#11119)
Co-authored-by: ShadowArcanist <162910371+ShadowArcanist@users.noreply.github.com>
This commit is contained in:
co-authored by
ShadowArcanist
parent
0b843bb07c
commit
8ae56587d5
@@ -0,0 +1,69 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Facades\Blade;
|
||||
|
||||
it('disables the button and targets the wire click action while loading', function () {
|
||||
$html = Blade::render(
|
||||
'<x-forms.button wire:click.prevent="checkConnection"><x-reicon name="refresh" class="size-3.5" />Check connection</x-forms.button>'
|
||||
);
|
||||
|
||||
expect($html)
|
||||
->toContain('wire:loading.attr="disabled"')
|
||||
->toContain('wire:loading.class="is-loading"')
|
||||
->toContain('wire:target="checkConnection"')
|
||||
->toContain('wire:loading')
|
||||
->toContain('animate-spin')
|
||||
->toContain('Check connection');
|
||||
});
|
||||
|
||||
it('uses an explicit wire target for submit buttons without wire click', function () {
|
||||
$html = Blade::render(
|
||||
'<x-forms.button type="submit" wire:target="addToken">Validate and add</x-forms.button>'
|
||||
);
|
||||
|
||||
expect($html)
|
||||
->toContain('type="submit"')
|
||||
->toContain('wire:loading.attr="disabled"')
|
||||
->toContain('wire:loading.class="is-loading"')
|
||||
->toContain('wire:target="addToken"')
|
||||
->toContain('animate-spin')
|
||||
->toContain('Validate and add');
|
||||
});
|
||||
|
||||
it('strips method arguments when deriving the loading target', function () {
|
||||
$html = Blade::render(
|
||||
'<x-forms.button wire:click="setPrivateKey(42)">Use this key</x-forms.button>'
|
||||
);
|
||||
|
||||
expect($html)
|
||||
->toContain('wire:target="setPrivateKey"')
|
||||
->toContain('wire:loading.attr="disabled"')
|
||||
->toContain('wire:loading.class="is-loading"');
|
||||
});
|
||||
|
||||
it('skips loading attributes when the loading indicator is disabled', function () {
|
||||
$html = Blade::render(
|
||||
'<x-forms.button wire:click="checkConnection" :showLoadingIndicator="false">Check connection</x-forms.button>'
|
||||
);
|
||||
|
||||
expect($html)
|
||||
->not->toContain('wire:loading.attr="disabled"')
|
||||
->not->toContain('wire:loading.class="is-loading"')
|
||||
->not->toContain('animate-spin')
|
||||
->toContain('Check connection');
|
||||
});
|
||||
|
||||
it('hides static button icons with the shared is-loading utility', function () {
|
||||
$css = file_get_contents(resource_path('css/utilities.css'));
|
||||
|
||||
expect($css)->toContain('.button.is-loading > svg:not(.animate-spin)');
|
||||
});
|
||||
|
||||
it('applies automatic loading behavior on the server private key check connection button', function () {
|
||||
$view = file_get_contents(resource_path('views/livewire/server/private-key/show.blade.php'));
|
||||
|
||||
expect($view)
|
||||
->toContain('wire:click.prevent="checkConnection"')
|
||||
->toContain('<x-reicon name="refresh" class="size-3.5" />')
|
||||
->toContain('<x-forms.button canGate="update" :canResource="$server"');
|
||||
});
|
||||
Reference in New Issue
Block a user