Livewire 데이터 테이블 작업
Actions
열을 추가해야 하는 상황이 있을 수 있습니다. 버전 2는 버전 1과 조금 다릅니다.먼저
Column
클래스를 확장하고 이름을 ActionColumn
로 지정해야 합니다.<?php
namespace App\View;
use Illuminate\Database\Eloquent\Model;
use Rappasoft\LaravelLivewireTables\Views\Column;
class ActionColumn extends Column
{
public function setView($view)
{
$this->view = $view;
return $this;
}
public function getView(): string
{
return property_exists($this, 'view') ? $this->view : 'livewire.datatable-actions';
}
public function getContents(Model $row)
{
return view($this->getView())
->withColumn($this)
->withRow($row);
}
}
그런 다음
resources/views/livewire/datatable-actions.blade.php
를 추가합니다.<div class="flex justify-items-center">
@can('view', $row)
<a class="cursor-pointer mr-4" href="{{ $row->getResourceUrl('show') }}">
<x-icon name="o-eye" class="text-indigo hover:font-bold mr-3 flex-shrink-0 h-6 w-6">
</x-icon>
</a>
@endcan
@can('update', $row)
<a class="cursor-pointer mr-4"
@if($form)
wire:click="$emitTo('{{ $form }}', 'showRecord', '{{ $row->uuid }}')"
@else
href="{{ $row->getResourceUrl('edit') }}"
@endif>
<x-icon name="o-pencil" class="text-indigo hover:font-bold mr-3 flex-shrink-0 h-6 w-6">
</x-icon>
</a>
@endcan
@can('delete', $row)
<div class="cursor-pointer"
wire:click="$emitTo('confirm', 'displayConfirmation', 'Delete Record', 'Are you sure?', '{{ $form }}', 'destroyRecord', '{{ $row->uuid }}')">
<x-icon name="o-trash" class="text-indigo hover:text-red-500 mr-3 flex-shrink-0 h-6 w-6">
</x-icon>
</div>
@endcan
</div>
위의 블레이드 파일에서 몇 가지 일이 발생했습니다.
@can('method', $object)
를 사용하여 아이콘을 표시하거나 숨길지 결정합니다. 주어진 모델에 적절한 정책을 설정해야 합니다. $emitTo('confirm')
를 사용합니다. $row->getResourceUrl()
방법을 사용합니다. 그런 다음 데이터 테이블의 사용법은 매우 간단합니다.
<?php
namespace App\Livewire;
use App\Models\User;
use App\View\ActionColumn;
use Illuminate\Database\Eloquent\Builder;
use Rappasoft\LaravelLivewireTables\DataTableComponent;
use Rappasoft\LaravelLivewireTables\Views\Column;
class UserDatatable extends DataTableComponent
{
protected $model = User::class;
/**
* Set any configuration options
*/
public function configure(): void
{
$this->setPrimaryKey('uuid');
}
/**
* The array defining the columns of the table.
*
* @return array
*/
public function columns(): array
{
return [
Column::make('Name', 'name')
->sortable(),
Column::make('Email', 'email')
->sortable(),
Column::make('Created at', 'created_at')
->sortable(),
Column::make('Updated at', 'updated_at')
->sortable(),
ActionColumn::make('Actions', 'uuid'),
];
}
}
필요한 경우 다른 보기
datatable-actions
를 설정할 수 있습니다.ActionColumn::make('Actions', 'uuid')
->setView('custom.dt-actions');
Reference
이 문제에 관하여(Livewire 데이터 테이블 작업), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/nasrulhazim/livewire-datatable-action-51je텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)