Files
UNIT3D-Community-Edition/app/Http/Livewire/UserSearch.php
T
2020-11-03 15:06:42 -05:00

61 lines
1.6 KiB
PHP

<?php
/**
* NOTICE OF LICENSE.
*
* UNIT3D Community Edition is open-sourced software licensed under the GNU Affero General Public License v3.0
* The details is bundled with this project in the file LICENSE.txt.
*
* @project UNIT3D Community Edition
*
* @author HDVinnie <hdinnovations@protonmail.com>
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
*/
namespace App\Http\Livewire;
use App\Models\User;
use Livewire\Component;
use Livewire\WithPagination;
class UserSearch extends Component
{
use WithPagination;
public $perPage = 25;
public $searchTerm = '';
public $sortField = 'created_at';
public $sortDirection = 'desc';
public function paginationView()
{
return 'vendor.pagination.livewire-pagination';
}
public function updatingSearchTerm()
{
$this->resetPage();
}
public function sortBy($field)
{
if ($this->sortField === $field) {
$this->sortDirection = $this->sortDirection === 'asc' ? 'desc' : 'asc';
} else {
$this->sortDirection = 'asc';
}
$this->sortField = $field;
}
public function render()
{
return view('livewire.user-search', [
'users' => User::query()
->when($this->searchTerm, function ($query) {
return $query->where('username', 'LIKE', '%'.$this->searchTerm.'%')->orWhere('email', 'LIKE', '%'.$this->searchTerm.'%');
})
->orderBy($this->sortField, $this->sortDirection)
->paginate($this->perPage),
]);
}
}