40 lines
864 B
PHP
40 lines
864 B
PHP
<?php
|
|
|
|
namespace App\Services\DataTable\Sort;
|
|
|
|
use App\Services\DataTable\Validators\SortingValidator;
|
|
|
|
class Sort
|
|
{
|
|
private static SortingValidator $sortingValidator;
|
|
|
|
/**
|
|
* @param string $id
|
|
* @param bool $desc
|
|
* @param array $allowedSortings
|
|
* @throws \App\Services\DataTable\Exceptions\InvalidSortingException
|
|
*/
|
|
public function __construct(
|
|
private string $id,
|
|
private bool $desc,
|
|
private array $allowedSortings,
|
|
)
|
|
{
|
|
self::$sortingValidator = SortingValidator::getInstance();
|
|
self::$sortingValidator->isValid($this, $this->allowedSortings);
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getId(): string
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
public function getDirection(): string
|
|
{
|
|
return $this->desc === true ? 'desc' : 'asc';
|
|
}
|
|
}
|