A Livewire wrapper for SortableJS.
A simple list of tasks in your component view.
<div class="bg-white shadow overflow-hidden sm:rounded-md">
<ul
wire:sortable="updateTaskOrder"
wire:sortable.animation="150"
class="divide-y divide-gray-200"
>
@foreach($tasks as $task)
<li wire:sortable.item="{{ $task->id }}">
<a href="#" class="block hover:bg-gray-50">
<div class="flex items-center px-4 py-4 sm:px-6">
Task {{ $task->id }}
</div>
</a>
</li>
@endforeach
</ul>
</div>
An update method in your component class.
public $tasks;
public function mount()
{
$this->tasks = Task::orderBy('order')->get();
}
public function updateTaskOrder($list)
{
foreach($list as $item) {
Task::where('id', $item['value'])
->update(['order' => $item['order']]);
}
$this->tasks = Task::orderBy('order')->get();
}
I invest a lot of time writing quality software, what open-source market deserves.
Where I live I'm currently unable to apply for GitHub sponsorship. I was able to set up a Buy Me a Coffee account though. That's where you can show appreciation for my dedicated time to writing this package.
<script src="https://cdn.jsdelivr.net/npm/livewire-sortablejs@0.x.x/dist/livewire-sortable.min.js" defer></script>
npm install livewire-sortablejs
or
yarn add livewire-sortablejs
Then import the package into your bundle:
import 'livewire-sortablejs'
// or
require('livewire-sortablejs')
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.