-
-
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
Showing
4 changed files
with
240 additions
and
11 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
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 |
---|---|---|
@@ -0,0 +1,76 @@ | ||
<?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
110 changes: 110 additions & 0 deletions
110
tests/Traits/Core/QueryStrings/QueryStringForSortTest.php
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 |
---|---|---|
@@ -0,0 +1,110 @@ | ||
<?php | ||
|
||
namespace Rappasoft\LaravelLivewireTables\Tests\Traits\Core\QueryStrings; | ||
|
||
use PHPUnit\Framework\Attributes\DataProvider; | ||
use PHPUnit\Framework\Attributes\Depends; | ||
use Rappasoft\LaravelLivewireTables\Tests\Http\Livewire\PetsTable; | ||
use Rappasoft\LaravelLivewireTables\Tests\TestCase; | ||
|
||
final class QueryStringForSortTest extends TestCase | ||
{ | ||
public function test_can_get_default_sort_query_string_status(): void | ||
{ | ||
$mock = new class extends PetsTable | ||
{ | ||
public ?array $testAttributesArray; | ||
|
||
public function configure(): void | ||
{ | ||
$this->setDataTableFingerprint('test'); | ||
} | ||
}; | ||
|
||
$mock->configure(); | ||
$mock->boot(); | ||
|
||
$this->assertSame(true, $mock->getQueryStringStatusForSort()); | ||
} | ||
|
||
public function test_can_disable_sort_query_string_status(): void | ||
{ | ||
$mock = new class extends PetsTable | ||
{ | ||
public ?array $testAttributesArray; | ||
|
||
public function configure(): void | ||
{ | ||
$this->setDataTableFingerprint('test'); | ||
$this->setQueryStringForSortDisabled(); | ||
} | ||
}; | ||
|
||
$mock->configure(); | ||
$mock->boot(); | ||
|
||
$this->assertSame(false, $mock->getQueryStringStatusForSort()); | ||
} | ||
|
||
public function test_can_enable_sort_query_string_status(): void | ||
{ | ||
$mock = new class extends PetsTable | ||
{ | ||
public ?array $testAttributesArray; | ||
|
||
public function configure(): void | ||
{ | ||
$this->setDataTableFingerprint('test'); | ||
$this->setQueryStringForSortDisabled(); | ||
} | ||
}; | ||
|
||
$mock->configure(); | ||
$mock->boot(); | ||
|
||
$this->assertSame(false, $mock->getQueryStringStatusForSort()); | ||
$mock->setQueryStringForSortEnabled(); | ||
$this->assertSame(true, $mock->getQueryStringStatusForSort()); | ||
|
||
} | ||
|
||
public function test_can_get_default_sort_query_string_alias(): void | ||
{ | ||
$mock = new class extends PetsTable | ||
{ | ||
public ?array $testAttributesArray; | ||
|
||
public function configure(): void | ||
{ | ||
$this->setDataTableFingerprint('test'); | ||
} | ||
}; | ||
|
||
$mock->configure(); | ||
$mock->boot(); | ||
|
||
$this->assertSame('table-sorts', $mock->getQueryStringAliasForSort()); | ||
|
||
} | ||
|
||
public function test_can_change_default_sort_query_string_alias(): void | ||
{ | ||
$mock = new class extends PetsTable | ||
{ | ||
public ?array $testAttributesArray; | ||
|
||
public function configure(): void | ||
{ | ||
$this->setDataTableFingerprint('test'); | ||
} | ||
}; | ||
|
||
$mock->configure(); | ||
$mock->boot(); | ||
|
||
$this->assertSame('table-sorts', $mock->getQueryStringAliasForSort()); | ||
$mock->setQueryStringAliasForSort('pet-sorts'); | ||
$this->assertSame('pet-sorts', $mock->getQueryStringAliasForSort()); | ||
$this->assertTrue($mock->hasQueryStringAliasForSort()); | ||
} | ||
} |