Add data tables, sort headers and M3 paginators
tests / lint (push) Successful in 1m0s
tests / feature (8.4) (push) Successful in 1m10s
tests / feature (8.5) (push) Successful in 1m6s
tests / browser (chrome, chromium) (push) Successful in 3m28s
tests / browser (firefox, firefox) (push) Successful in 4m20s
tests / browser (safari, webkit) (push) Failing after 6m16s
tests / lint (push) Successful in 1m0s
tests / feature (8.4) (push) Successful in 1m10s
tests / feature (8.5) (push) Successful in 1m6s
tests / browser (chrome, chromium) (push) Successful in 3m28s
tests / browser (firefox, firefox) (push) Successful in 4m20s
tests / browser (safari, webkit) (push) Failing after 6m16s
A data table styled from descendant selectors, a Livewire sort header with aria-sort, and Laravel's and Livewire's full and simple paginators drawn in M3, put in front of their own views. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01V9NnLxnPp8vaaurb3Z1MFy
This commit is contained in:
co-authored by
Claude Opus 5
parent
f90695cedd
commit
83ed671c4e
@@ -2,6 +2,7 @@
|
||||
|
||||
namespace NoNameWeb\LivewireMaterial;
|
||||
|
||||
use Illuminate\Contracts\View\Factory;
|
||||
use Illuminate\Support\Facades\Blade;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
@@ -21,6 +22,7 @@ class LivewireMaterialServiceProvider extends ServiceProvider
|
||||
$this->loadTranslationsFrom(__DIR__.'/../lang', 'livewire-material');
|
||||
|
||||
$this->registerComponents();
|
||||
$this->registerPagination();
|
||||
$this->registerShowcase();
|
||||
|
||||
if ($this->app->runningInConsole()) {
|
||||
@@ -45,6 +47,24 @@ class LivewireMaterialServiceProvider extends ServiceProvider
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Put the M3 paginators in front of Laravel's and Livewire's own. Prepended to their
|
||||
* namespaces rather than set as the default view, because Livewire sets its own default on
|
||||
* every render; an application's published `vendor/pagination` or `vendor/livewire` views are
|
||||
* looked up before any namespace path, so they still win.
|
||||
*/
|
||||
protected function registerPagination(): void
|
||||
{
|
||||
if (! config('livewire-material.pagination')) {
|
||||
return;
|
||||
}
|
||||
|
||||
$this->callAfterResolving('view', function (Factory $view): void {
|
||||
$view->prependNamespace('pagination', __DIR__.'/../resources/views/pagination/laravel');
|
||||
$view->prependNamespace('livewire', __DIR__.'/../resources/views/pagination/livewire');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* blade-icons registers a class-based <x-icon> of its own, and Blade resolves a
|
||||
* registered class alias before any anonymous component path, so ours would never
|
||||
|
||||
Reference in New Issue
Block a user