Livewire 데이터 테이블 작업

Rappasoft Laravel Livewire Table version 2 을 사용하는 경우 표준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');
    

    좋은 웹페이지 즐겨찾기