unzeroun / sorter
This package is abandoned and no longer maintained.
The author suggests using the yohang/sorter package instead.
A library to dynamically sort collections / queries
1.0.0
2025-03-22 21:05 UTC
Requires
- php: >=8.1
- symfony/http-foundation: ^5.4|^6.0|^7.0
Requires (Dev)
- dg/bypass-finals: ^1.9
- doctrine/orm: ^2.5|^3.0
- friendsofphp/php-cs-fixer: ^3.72
- infection/infection: ^0.28.1
- phpunit/phpunit: ^10.5.40
- symfony/browser-kit: ^5.4|^6.0|^7.0
- symfony/css-selector: ^5.4|^6.0|^7.0
- symfony/framework-bundle: ^5.4|^6.0|^7.0
- symfony/monolog-bundle: ^3.10
- symfony/property-access: ^5.4|^6.0|^7.0
- symfony/twig-bundle: ^5.4|^6.0|^7.0
- twig/twig: ^3.0.0
- vimeo/psalm: ^6.9
Suggests
- doctrine/orm: Needed for use of ORMApplier
- symfony/property-access: Needed for use of ArrayAdapter
This package is auto-updated.
Last update: 2025-03-24 08:12:21 UTC
README
Warning
This repo is archived and the project now lives here : https://github.com/yohang/sorter
Sorter is a PHP column sorting library that allows you to apply sorts of any kind of data source.
Features
- Sorts any kind of data source
- Sorts by multiple columns
- Factorise sorting logic into definitions classes
- Process HTTP request
- Symfony Bundle
- Twig extension
Installation
$ composer require unzeroun/sorter
Optionnal : enable symfony bundle
<?php return [ // ... UnZeroUn\Sorter\Extension\Symfony\Bundle\UnZeroUnSorterBundle::class => ['all' => true], ];
Usage
Sorter provides a SorterFactory
class that allows you to sort your data source.
The factory require an applier to apply the sort to the data source.
Basic sorting
// Create the sorter factory (useless with Symfony) $factory = new SorterFactory([new DoctrineORMApplier()]); // Create your sorter definition $sorter = $factory->createSorter() ->add('title', 'p.title') ->add('date', 'p.date') ->addDefault('date', Sort::ASC); // Handle takes an array of data and transform it to a Sort object $sorter->handle([]); // Apply the sort to the data $data = $sorter->sort($data);
Symfony usage
With Symfony, the SorterFactory
is available as a service.
class IndexController { public function __construct( private SorterFactory $factory, private PostRepository $repository, private Environment $twig, ) { } public function index(Request $request) { $sorter = $this->factory->createSorter() ->add('title', 'p.title') ->add('date', 'p.date') ->addDefault('date', Sort::ASC); $sorter->handleRequest($request); $qb = $sorter->sort($this->repository->createQueryBuilder('p')); return new Response( $this->twig->render( 'array-sort.html.twig', [ 'sorter' => $sorter, 'data' => $qb->getQuery()->getResult(), ], ), ); } }
Definition class
You can factorise your sorting logic into a definition class.
use UnZeroUn\Sorter\Definition; use UnZeroUn\Sorter\Sorter; class PostSortDefinition implements Definition { public function buildSorter(Sorter $sorter): void { $sorter ->add('title', 'p.title') ->add('date', 'p.date') ->addDefault('date', Sort::ASC); } }
class IndexController { public function __construct( private SorterFactory $factory, private PostRepository $repository, private Environment $twig, ) { } public function index(Request $request) { $sorter = $this->factory->createSorter(new PostSortDefinition()); $sorter->handleRequest($request); $qb = $sorter->sort($this->repository->createQueryBuilder('p')); return new Response( $this->twig->render( 'array-sort.html.twig', [ 'sorter' => $sorter, 'data' => $qb->getQuery()->getResult(), ], ), ); } }