mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-06-28 04:30:08 +02:00
Allow to emulate natural sorting on SQLite databases
This commit is contained in:
parent
289c9126d0
commit
272fe0516b
5 changed files with 84 additions and 0 deletions
49
src/EventListener/AllowSlowNaturalSortListener.php
Normal file
49
src/EventListener/AllowSlowNaturalSortListener.php
Normal file
|
@ -0,0 +1,49 @@
|
|||
<?php
|
||||
/*
|
||||
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
||||
*
|
||||
* Copyright (C) 2019 - 2024 Jan Böhmer (https://github.com/jbtronics)
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published
|
||||
* by the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
|
||||
namespace App\EventListener;
|
||||
|
||||
use App\Doctrine\Functions\Natsort;
|
||||
use Symfony\Component\DependencyInjection\Attribute\Autowire;
|
||||
use Symfony\Component\EventDispatcher\Attribute\AsEventListener;
|
||||
use Symfony\Component\HttpKernel\Event\RequestEvent;
|
||||
|
||||
/**
|
||||
* This is a workaround to the fact that we can not inject parameters into doctrine custom functions.
|
||||
* Therefore we use this event listener to call the static function on the custom function, to inject the value, before
|
||||
* any NATSORT function is called.
|
||||
*/
|
||||
#[AsEventListener]
|
||||
class AllowSlowNaturalSortListener
|
||||
{
|
||||
public function __construct(
|
||||
#[Autowire(param: 'partdb.db.emulate_natural_sort')]
|
||||
private readonly bool $allowNaturalSort)
|
||||
{
|
||||
}
|
||||
|
||||
public function __invoke(RequestEvent $event)
|
||||
{
|
||||
Natsort::allowSlowNaturalSort($this->allowNaturalSort);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue