-
-
Notifications
You must be signed in to change notification settings - Fork 344
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3271df3
commit 3659283
Showing
2 changed files
with
79 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,76 +1,77 @@ | ||
<?php | ||
|
||
namespace Rappasoft\LaravelLivewireTables\Traits\Core\QueryStrings; | ||
|
||
use Livewire\Attributes\Locked; | ||
|
||
trait HasQueryStringForSort | ||
{ | ||
#[Locked] | ||
public ?bool $queryStringStatusForSort; | ||
|
||
protected ?string $queryStringAliasForSort; | ||
|
||
protected function queryStringHasQueryStringForSort(): array | ||
{ | ||
return ($this->queryStringForSortEnabled() && $this->sortingIsEnabled()) ? ['sorts' => ['except' => null, 'history' => false, 'keep' => false, 'as' => $this->getQueryStringAliasForSort()]] : []; | ||
|
||
} | ||
public function setupQueryStringStatusForSort(): void | ||
{ | ||
if (! $this->hasQueryStringStatusForSort()) { | ||
$this->setQueryStringForSortEnabled(); | ||
} | ||
} | ||
|
||
public function hasQueryStringStatusForSort(): bool | ||
{ | ||
return isset($this->queryStringStatusForSort); | ||
} | ||
|
||
public function getQueryStringStatusForSort(): bool | ||
{ | ||
return $this->queryStringStatusForSort ?? true; | ||
} | ||
|
||
public function queryStringForSortEnabled(): bool | ||
{ | ||
$this->setupQueryStringStatusForSort(); | ||
|
||
return $this->getQueryStringStatusForSort() && $this->sortingIsEnabled(); | ||
} | ||
|
||
public function setQueryStringStatusForSort(bool $status): self | ||
{ | ||
$this->queryStringStatusForSort = $status; | ||
|
||
return $this; | ||
} | ||
|
||
public function setQueryStringForSortEnabled(): self | ||
{ | ||
return $this->setQueryStringStatusForSort(true); | ||
} | ||
|
||
public function setQueryStringForSortDisabled(): self | ||
{ | ||
return $this->setQueryStringStatusForSort(false); | ||
} | ||
|
||
public function hasQueryStringAliasForSort(): bool | ||
{ | ||
return isset($this->queryStringAliasForSort); | ||
} | ||
|
||
public function getQueryStringAliasForSort(): string | ||
{ | ||
return $this->queryStringAliasForSort ?? $this->getQueryStringAlias().'-sorts'; | ||
} | ||
|
||
public function setQueryStringAliasForSort(string $alias): self | ||
{ | ||
$this->queryStringAliasForSort = $alias; | ||
|
||
return $this; | ||
} | ||
} | ||
<?php | ||
|
||
namespace Rappasoft\LaravelLivewireTables\Traits\Core\QueryStrings; | ||
|
||
use Livewire\Attributes\Locked; | ||
|
||
trait HasQueryStringForSort | ||
{ | ||
#[Locked] | ||
public ?bool $queryStringStatusForSort; | ||
|
||
protected ?string $queryStringAliasForSort; | ||
|
||
protected function queryStringHasQueryStringForSort(): array | ||
{ | ||
return ($this->queryStringForSortEnabled() && $this->sortingIsEnabled()) ? ['sorts' => ['except' => null, 'history' => false, 'keep' => false, 'as' => $this->getQueryStringAliasForSort()]] : []; | ||
|
||
} | ||
|
||
public function setupQueryStringStatusForSort(): void | ||
{ | ||
if (! $this->hasQueryStringStatusForSort()) { | ||
$this->setQueryStringForSortEnabled(); | ||
} | ||
} | ||
|
||
public function hasQueryStringStatusForSort(): bool | ||
{ | ||
return isset($this->queryStringStatusForSort); | ||
} | ||
|
||
public function getQueryStringStatusForSort(): bool | ||
{ | ||
return $this->queryStringStatusForSort ?? true; | ||
} | ||
|
||
public function queryStringForSortEnabled(): bool | ||
{ | ||
$this->setupQueryStringStatusForSort(); | ||
|
||
return $this->getQueryStringStatusForSort() && $this->sortingIsEnabled(); | ||
} | ||
|
||
public function setQueryStringStatusForSort(bool $status): self | ||
{ | ||
$this->queryStringStatusForSort = $status; | ||
|
||
return $this; | ||
} | ||
|
||
public function setQueryStringForSortEnabled(): self | ||
{ | ||
return $this->setQueryStringStatusForSort(true); | ||
} | ||
|
||
public function setQueryStringForSortDisabled(): self | ||
{ | ||
return $this->setQueryStringStatusForSort(false); | ||
} | ||
|
||
public function hasQueryStringAliasForSort(): bool | ||
{ | ||
return isset($this->queryStringAliasForSort); | ||
} | ||
|
||
public function getQueryStringAliasForSort(): string | ||
{ | ||
return $this->queryStringAliasForSort ?? $this->getQueryStringAlias().'-sorts'; | ||
} | ||
|
||
public function setQueryStringAliasForSort(string $alias): self | ||
{ | ||
$this->queryStringAliasForSort = $alias; | ||
|
||
return $this; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters