-
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
d654fe3
commit 7589179
Showing
29 changed files
with
714 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
Expression Language | ||
=================== | ||
|
||
The Sylius Grid Bundle utilizes the Symfony `ExpressionLanguage` component to provide a flexible and powerful way to evaluate expressions. | ||
|
||
Evaluating Expressions | ||
---------------------- | ||
|
||
Expressions can be evaluated using the `sylius_grid.expression_language.expression_evaluator` service, which is an instance of `ExpressionEvaluator`. | ||
|
||
The `ExpressionEvaluator` uses both an instance of `ExpressionLanguage` and a `VariablesCollectionInterface` (`sylius_grid.expression_language.variables_collection_aggregate`). This ensures that the evaluator has access to a collection of variables that developers can add. | ||
|
||
To evaluate an expression: | ||
- The `evaluateExpression` method is called with the expression string and an optional array of variables. | ||
- The evaluator merges the provided variables with the collection of variables provided by the `VariablesCollectionAggregate` mentioned earlier. | ||
- The expression is then evaluated with all the variables. | ||
|
||
**Note that:** | ||
- The `ExpressionLanguage` can be extended using expression providers. | ||
- `sylius_grid.expression_language.variables_collection_aggregate` can be extended using custom variables collections. | ||
|
||
Extending the Expression Language | ||
--------------------------------- | ||
|
||
### Adding Expression Providers | ||
|
||
The Symfony `ExpressionLanguage` component can be extended with functions using expression providers. To create a custom expression provider: | ||
|
||
1. Your class should implement `Symfony\Component\ExpressionLanguage\ExpressionFunctionProviderInterface`. | ||
2. Tag your service with `sylius.grid.provider`. You can automate this by using the `Sylius\Component\Grid\Attribute\AsExpressionProvider` attribute. | ||
|
||
### Adding Custom Variables | ||
|
||
Adding custom variables is done by creating a new variables collection: | ||
|
||
1. Create a class that implements `Sylius\Component\Grid\ExpressionLanguage\VariablesCollectionInterface`. | ||
2. Tag your service with `sylius.grid.variables`. You can automate this by using the `Sylius\Component\Grid\Attribute\AsExpressionVariables` attribute. |
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,28 @@ | ||
<?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\Bundle\GridBundle\Builder\Field; | ||
|
||
final class ExpressionField | ||
{ | ||
public static function create( | ||
string $name, | ||
string $expression, | ||
bool $htmlspecialchars = true, | ||
): FieldInterface { | ||
return Field::create($name, 'expression') | ||
->setOption('expression', $expression) | ||
->setOption('htmlspecialchars', $htmlspecialchars) | ||
; | ||
} | ||
} |
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_grid.expression_language.factory" class="Sylius\Component\Grid\ExpressionLanguage\ExpressionLanguageFactory"> | ||
<argument type="tagged_iterator" tag="sylius.grid.provider" /> | ||
</service> | ||
|
||
<service id="sylius_grid.expression_language" class="Symfony\Component\ExpressionLanguage\ExpressionLanguage"> | ||
<factory service="sylius_grid.expression_language.factory" /> | ||
</service> | ||
|
||
<service id="sylius_grid.expression_language.expression_evaluator" class="Sylius\Component\Grid\ExpressionLanguage\ExpressionEvaluator"> | ||
<argument type="service" id="sylius_grid.expression_language" /> | ||
<argument type="service" id="sylius_grid.expression_language.variables_collection_aggregate" /> | ||
</service> | ||
|
||
<service id="sylius_grid.expression_language.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
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 AsExpressionProvider | ||
{ | ||
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 AsExpressionVariables | ||
{ | ||
public const SERVICE_TAG = 'sylius.grid.variables'; | ||
} |
Oops, something went wrong.