-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '1.x' into 536-add-system-integer-filter
# Conflicts: # config/data_index_filters.yaml # doc/03_Grid.md
- Loading branch information
Showing
9 changed files
with
114 additions
and
4 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
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,50 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
/** | ||
* Pimcore | ||
* | ||
* This source file is available under two different licenses: | ||
* - GNU General Public License version 3 (GPLv3) | ||
* - Pimcore Commercial License (PCL) | ||
* Full copyright and license information is available in | ||
* LICENSE.md which is distributed with this source code. | ||
* | ||
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org) | ||
* @license http://www.pimcore.org/license GPLv3 and PCL | ||
*/ | ||
|
||
namespace Pimcore\Bundle\StudioBackendBundle\DataIndex\Filter; | ||
|
||
use Pimcore\Bundle\StudioBackendBundle\DataIndex\Query\QueryInterface; | ||
use Pimcore\Bundle\StudioBackendBundle\Exception\Api\InvalidArgumentException; | ||
use Pimcore\Bundle\StudioBackendBundle\Grid\Column\ColumnType; | ||
use Pimcore\Bundle\StudioBackendBundle\MappedParameter\Filter\SimpleColumnFiltersParameterInterface; | ||
use function is_int; | ||
|
||
/** | ||
* @internal | ||
*/ | ||
final class IdFilter implements FilterInterface | ||
{ | ||
public function apply(mixed $parameters, QueryInterface $query): QueryInterface | ||
{ | ||
if (!$parameters instanceof SimpleColumnFiltersParameterInterface) { | ||
return $query; | ||
} | ||
|
||
$filter = $parameters->getSimpleColumnFilterByType(ColumnType::SYSTEM_ID->value); | ||
|
||
if (!$filter) { | ||
return $query; | ||
} | ||
|
||
if (!is_int($filter->getFilterValue())) { | ||
throw new InvalidArgumentException('Filter value for this filter must be a integer'); | ||
} | ||
|
||
$query->searchByIds([$filter->getFilterValue()]); | ||
|
||
return $query; | ||
} | ||
} |
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,52 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
/** | ||
* Pimcore | ||
* | ||
* This source file is available under two different licenses: | ||
* - GNU General Public License version 3 (GPLv3) | ||
* - Pimcore Commercial License (PCL) | ||
* Full copyright and license information is available in | ||
* LICENSE.md which is distributed with this source code. | ||
* | ||
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org) | ||
* @license http://www.pimcore.org/license GPLv3 and PCL | ||
*/ | ||
|
||
namespace Pimcore\Bundle\StudioBackendBundle\Grid\Column\Definition\System; | ||
|
||
use Pimcore\Bundle\StudioBackendBundle\Grid\Column\ColumnDefinitionInterface; | ||
use Pimcore\Bundle\StudioBackendBundle\Grid\Column\ColumnType; | ||
use Pimcore\Bundle\StudioBackendBundle\Grid\Column\FrontendType; | ||
|
||
/** | ||
* @internal | ||
*/ | ||
final readonly class IdDefinition implements ColumnDefinitionInterface | ||
{ | ||
public function getType(): string | ||
{ | ||
return ColumnType::SYSTEM_ID->value; | ||
} | ||
|
||
public function getConfig(mixed $config): array | ||
{ | ||
return []; | ||
} | ||
|
||
public function isSortable(): bool | ||
{ | ||
return true; | ||
} | ||
|
||
public function getFrontendType(): string | ||
{ | ||
return FrontendType::INPUT->value; | ||
} | ||
|
||
public function isExportable(): bool | ||
{ | ||
return true; | ||
} | ||
} |
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
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