mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-02-13 23:19:55 -06:00
99 lines
2.7 KiB
PHP
99 lines
2.7 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 bool $show = false;
|
|
|
|
public int $perPage = 25;
|
|
|
|
public string $search = '';
|
|
|
|
public string $sortField = 'created_at';
|
|
|
|
public string $sortDirection = 'desc';
|
|
|
|
protected $queryString = [
|
|
'search' => ['except' => ''],
|
|
'show' => ['except' => false],
|
|
'page' => ['except' => 1],
|
|
'perPage' => ['except' => ''],
|
|
];
|
|
|
|
final public function updatedPage(): void
|
|
{
|
|
$this->emit('paginationChanged');
|
|
}
|
|
|
|
final public function updatingSearch(): void
|
|
{
|
|
$this->resetPage();
|
|
}
|
|
|
|
final public function updatingShow(): void
|
|
{
|
|
$this->resetPage();
|
|
}
|
|
|
|
final public function toggleProperties($property): void
|
|
{
|
|
if ($property === 'show') {
|
|
$this->show = ! $this->show;
|
|
}
|
|
}
|
|
|
|
final public function getUsersProperty(): \Illuminate\Contracts\Pagination\LengthAwarePaginator
|
|
{
|
|
return User::query()
|
|
->with('group')
|
|
->when(
|
|
$this->search,
|
|
fn ($query) => $query
|
|
->where('username', 'LIKE', '%'.$this->search.'%')
|
|
->orWhere('email', 'LIKE', '%'.$this->search.'%')
|
|
->orWhere('rsskey', 'LIKE', '%'.$this->search.'%')
|
|
->orWhere('api_token', 'LIKE', '%'.$this->search.'%')
|
|
->orWhere('passkey', 'LIKE', '%'.$this->search.'%')
|
|
)
|
|
->when($this->show === true, fn ($query) => $query->onlyTrashed())
|
|
->orderBy($this->sortField, $this->sortDirection)
|
|
->paginate($this->perPage);
|
|
}
|
|
|
|
final public function sortBy($field): void
|
|
{
|
|
if ($this->sortField === $field) {
|
|
$this->sortDirection = $this->sortDirection === 'asc' ? 'desc' : 'asc';
|
|
} else {
|
|
$this->sortDirection = 'asc';
|
|
}
|
|
|
|
$this->sortField = $field;
|
|
}
|
|
|
|
final public function render(): \Illuminate\Contracts\View\Factory|\Illuminate\Contracts\View\View|\Illuminate\Contracts\Foundation\Application
|
|
{
|
|
return view('livewire.user-search', [
|
|
'users' => $this->users,
|
|
]);
|
|
}
|
|
}
|