-
Notifications
You must be signed in to change notification settings - Fork 49
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
1 parent
e73e717
commit 678c268
Showing
22 changed files
with
418 additions
and
31 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
33 changes: 33 additions & 0 deletions
33
src/Bundle/Resources/config/services/expression_language.xml
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,33 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<!-- | ||
This file is part of the Sylius package. | ||
(c) Sylius Sp. z o.o. | ||
For the full copyright and license information, please view the LICENSE | ||
file that was distributed with this source code. | ||
--> | ||
|
||
<container xmlns="http://symfony.com/schema/dic/services" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd"> | ||
<services> | ||
<service id="sylius.expression_language.grid.expression_language_factory" class="Sylius\Component\Grid\ExpressionLanguage\ExpressionLanguageFactory"> | ||
<argument type="tagged_iterator" tag="sylius.grid.provider" /> | ||
</service> | ||
|
||
<service id="sylius.expression_language.grid.expression_language" class="Symfony\Component\ExpressionLanguage\ExpressionLanguage"> | ||
<factory service="sylius.expression_language.grid.expression_language_factory" /> | ||
</service> | ||
|
||
<service id="sylius.expression_language.grid.expression_evaluator" class="Sylius\Component\Grid\ExpressionLanguage\ExpressionEvaluator"> | ||
<argument type="service" id="sylius.expression_language.grid.expression_language" /> | ||
<argument type="service" id="sylius.expression_language.grid.variables_collection_aggregate" /> | ||
</service> | ||
|
||
<service id="sylius.expression_language.grid.variables_collection_aggregate" class="Sylius\Component\Grid\ExpressionLanguage\VariablesCollectionAggregate"> | ||
<argument type="tagged_iterator" tag="sylius.grid.variables" /> | ||
</service> | ||
</services> | ||
</container> |
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,20 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Sylius package. | ||
* | ||
* (c) Sylius Sp. z o.o. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Sylius\Component\Grid\Attribute; | ||
|
||
#[\Attribute(\Attribute::TARGET_CLASS)] | ||
final class AsGridProvider | ||
{ | ||
public const SERVICE_TAG = 'sylius.grid.provider'; | ||
} |
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,20 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Sylius package. | ||
* | ||
* (c) Sylius Sp. z o.o. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Sylius\Component\Grid\Attribute; | ||
|
||
#[\Attribute(\Attribute::TARGET_CLASS)] | ||
final class AsGridVariables | ||
{ | ||
public const SERVICE_TAG = 'sylius.grid.variables'; | ||
} |
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,39 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Sylius package. | ||
* | ||
* (c) Sylius Sp. z o.o. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Sylius\Component\Grid\ExpressionLanguage; | ||
|
||
use Symfony\Component\ExpressionLanguage\ExpressionLanguage; | ||
|
||
/** | ||
* @experimental | ||
*/ | ||
final class ExpressionEvaluator implements ExpressionEvaluatorInterface | ||
{ | ||
public function __construct( | ||
private ExpressionLanguage $expressionLanguage, | ||
private VariablesCollectionInterface $variablesCollection, | ||
) { | ||
} | ||
|
||
public function evaluateExpression(string $expression, array $variables = []): mixed | ||
{ | ||
return $this->expressionLanguage->evaluate( | ||
$expression, | ||
array_merge( | ||
$this->variablesCollection->getCollection(), | ||
$variables, | ||
), | ||
); | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
src/Component/ExpressionLanguage/ExpressionEvaluatorInterface.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,22 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Sylius package. | ||
* | ||
* (c) Sylius Sp. z o.o. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Sylius\Component\Grid\ExpressionLanguage; | ||
|
||
/** | ||
* @experimental | ||
*/ | ||
interface ExpressionEvaluatorInterface | ||
{ | ||
public function evaluateExpression(string $expression, array $variables = []): mixed; | ||
} |
41 changes: 41 additions & 0 deletions
41
src/Component/ExpressionLanguage/ExpressionLanguageFactory.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,41 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Sylius package. | ||
* | ||
* (c) Sylius Sp. z o.o. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Sylius\Component\Grid\ExpressionLanguage; | ||
|
||
use Symfony\Component\ExpressionLanguage\ExpressionFunctionProviderInterface; | ||
use Symfony\Component\ExpressionLanguage\ExpressionLanguage; | ||
use Webmozart\Assert\Assert; | ||
|
||
/** | ||
* @experimental | ||
*/ | ||
final class ExpressionLanguageFactory | ||
{ | ||
/** @param iterable<int, ExpressionFunctionProviderInterface> $providers */ | ||
public function __construct(private $providers) | ||
{ | ||
Assert::allIsInstanceOf($this->providers, ExpressionFunctionProviderInterface::class); | ||
} | ||
|
||
public function __invoke(): ExpressionLanguage | ||
{ | ||
$expressionLanguage = new ExpressionLanguage(); | ||
|
||
foreach ($this->providers as $provider) { | ||
$expressionLanguage->registerProvider($provider); | ||
} | ||
|
||
return $expressionLanguage; | ||
} | ||
} |
38 changes: 38 additions & 0 deletions
38
src/Component/ExpressionLanguage/VariablesCollectionAggregate.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,38 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Sylius package. | ||
* | ||
* (c) Sylius Sp. z o.o. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Sylius\Component\Grid\ExpressionLanguage; | ||
|
||
use Webmozart\Assert\Assert; | ||
|
||
/** | ||
* @experimental | ||
*/ | ||
final class VariablesCollectionAggregate implements VariablesCollectionInterface | ||
{ | ||
/** @param iterable<int, VariablesCollectionInterface> $variablesCollection */ | ||
public function __construct(private $variablesCollection) | ||
{ | ||
Assert::allIsInstanceOf($this->variablesCollection, VariablesCollectionInterface::class); | ||
} | ||
|
||
public function getCollection(): array | ||
{ | ||
$collections = []; | ||
foreach ($this->variablesCollection as $collection) { | ||
$collections[] = $collection->getCollection(); | ||
} | ||
|
||
return array_merge(...$collections); | ||
} | ||
} |
25 changes: 25 additions & 0 deletions
25
src/Component/ExpressionLanguage/VariablesCollectionInterface.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,25 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Sylius package. | ||
* | ||
* (c) Sylius Sp. z o.o. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Sylius\Component\Grid\ExpressionLanguage; | ||
|
||
/** | ||
* @experimental | ||
*/ | ||
interface VariablesCollectionInterface | ||
{ | ||
/** | ||
* @return array<string, mixed> | ||
*/ | ||
public function getCollection(): array; | ||
} |
Oops, something went wrong.