1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/* |
4
|
|
|
* This file is part of the Sylius package. |
5
|
|
|
* |
6
|
|
|
* (c) Paweł Jędrzejewski |
7
|
|
|
* |
8
|
|
|
* For the full copyright and license information, please view the LICENSE |
9
|
|
|
* file that was distributed with this source code. |
10
|
|
|
*/ |
11
|
|
|
|
12
|
|
|
namespace Sylius\Bundle\ResourceBundle\Grid\Renderer; |
13
|
|
|
|
14
|
|
|
use Sylius\Bundle\ResourceBundle\Grid\Parser\OptionsParserInterface; |
15
|
|
|
use Sylius\Component\Grid\Definition\Action; |
16
|
|
|
use Sylius\Component\Grid\Definition\Field; |
17
|
|
|
use Sylius\Component\Grid\Definition\Filter; |
18
|
|
|
use Sylius\Component\Grid\Renderer\GridRendererInterface; |
19
|
|
|
use Sylius\Component\Grid\View\GridViewInterface; |
20
|
|
|
|
21
|
|
|
/** |
22
|
|
|
* @author Grzegorz Sadowski <[email protected]> |
23
|
|
|
*/ |
24
|
|
|
final class TwigGridRenderer implements GridRendererInterface |
25
|
|
|
{ |
26
|
|
|
/** |
27
|
|
|
* @var GridRendererInterface |
28
|
|
|
*/ |
29
|
|
|
private $gridRenderer; |
30
|
|
|
|
31
|
|
|
/** |
32
|
|
|
* @var \Twig_Environment |
33
|
|
|
*/ |
34
|
|
|
private $twig; |
35
|
|
|
|
36
|
|
|
/** |
37
|
|
|
* @var OptionsParserInterface |
38
|
|
|
*/ |
39
|
|
|
private $optionsParser; |
40
|
|
|
|
41
|
|
|
/** |
42
|
|
|
* @var array |
43
|
|
|
*/ |
44
|
|
|
private $actionTemplates; |
45
|
|
|
|
46
|
|
|
/** |
47
|
|
|
* @param GridRendererInterface $gridRenderer |
48
|
|
|
* @param \Twig_Environment $twig |
49
|
|
|
* @param OptionsParserInterface $optionsParser |
50
|
|
|
* @param array $actionTemplates |
51
|
|
|
*/ |
52
|
|
|
public function __construct( |
53
|
|
|
GridRendererInterface $gridRenderer, |
54
|
|
|
\Twig_Environment $twig, |
55
|
|
|
OptionsParserInterface $optionsParser, |
56
|
|
|
array $actionTemplates = [] |
57
|
|
|
) { |
58
|
|
|
$this->gridRenderer = $gridRenderer; |
59
|
|
|
$this->twig = $twig; |
60
|
|
|
$this->optionsParser = $optionsParser; |
61
|
|
|
$this->actionTemplates = $actionTemplates; |
62
|
|
|
} |
63
|
|
|
|
64
|
|
|
/** |
65
|
|
|
* {@inheritdoc} |
66
|
|
|
*/ |
67
|
|
|
public function render(GridViewInterface $gridView, $template = null) |
68
|
|
|
{ |
69
|
|
|
return $this->gridRenderer->render($gridView, $template); |
70
|
|
|
} |
71
|
|
|
|
72
|
|
|
/** |
73
|
|
|
* {@inheritdoc} |
74
|
|
|
*/ |
75
|
|
|
public function renderField(GridViewInterface $gridView, Field $field, $data) |
76
|
|
|
{ |
77
|
|
|
return $this->gridRenderer->renderField($gridView, $field, $data); |
78
|
|
|
} |
79
|
|
|
|
80
|
|
|
/** |
81
|
|
|
* {@inheritdoc} |
82
|
|
|
*/ |
83
|
|
|
public function renderAction(GridViewInterface $gridView, Action $action, $data = null) |
84
|
|
|
{ |
85
|
|
|
$type = $action->getType(); |
86
|
|
|
if (!isset($this->actionTemplates[$type])) { |
87
|
|
|
throw new \InvalidArgumentException(sprintf('Missing template for action type "%s".', $type)); |
88
|
|
|
} |
89
|
|
|
|
90
|
|
|
$options = $this->optionsParser->parseOptions( |
91
|
|
|
$action->getOptions(), |
92
|
|
|
$gridView->getRequestConfiguration()->getRequest(), |
|
|
|
|
93
|
|
|
$data |
94
|
|
|
); |
95
|
|
|
|
96
|
|
|
return $this->twig->render($this->actionTemplates[$type], [ |
97
|
|
|
'grid' => $gridView, |
98
|
|
|
'action' => $action, |
99
|
|
|
'data' => $data, |
100
|
|
|
'options' => $options, |
101
|
|
|
]); |
102
|
|
|
} |
103
|
|
|
|
104
|
|
|
/** |
105
|
|
|
* {@inheritdoc} |
106
|
|
|
*/ |
107
|
|
|
public function renderFilter(GridViewInterface $gridView, Filter $filter) |
108
|
|
|
{ |
109
|
|
|
return $this->gridRenderer->renderFilter($gridView, $filter); |
110
|
|
|
} |
111
|
|
|
} |
112
|
|
|
|
Let’s take a look at an example:
In the above example, the authenticate() method works fine as long as you just pass instances of MyUser. However, if you now also want to pass a different implementation of User which does not have a getDisplayName() method, the code will break.
Available Fixes
Change the type-hint for the parameter:
Add an additional type-check:
Add the method to the interface: