-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathTableFactory.php
More file actions
219 lines (172 loc) · 6.23 KB
/
TableFactory.php
File metadata and controls
219 lines (172 loc) · 6.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
<?php
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
namespace Tactics\TableBundle;
use Symfony\Component\DependencyInjection\ContainerAwareInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
use Tactics\TableBundle\Exception\UnknownTypeException;
/**
* Description of TableFactory
*
* @author Gert Vrebos <gert.vrebos at tactics.be>
*/
class TableFactory implements TableFactoryInterface, ContainerAwareInterface
{
/**
* @var $container ContainerInterface A ContainerInterface instance.
*/
protected $container;
/**
* @var $columnExtensions array A list of columnExtensions
*/
protected $columnExtensions;
/**
* @var $headerExtensions array A list of headerExtensions
*/
protected $headerExtensions;
/**
* Constructor
*
* @param ContainerInterface $container A ContainerInterface instance.
* @param array $columnExtensions A list of columnExtensions
* @param array $headerExtensions A list of headerExtensions
*/
public function __construct(ContainerInterface $container, array $columnExtensions = array(), $headerExtensions = array())
{
$this->setContainer($container);
$this->columnExtensions = array();
foreach($columnExtensions as $id)
{
$this->columnExtensions[] = $container->get($id);
}
$this->headerExtensions = array();
foreach($headerExtensions as $id)
{
$this->headerExtensions[] = $container->get($id);
}
}
/**
* {@inheritdoc}
*/
public function setContainer(ContainerInterface $container = null)
{
$this->container = $container;
}
public function getContainer()
{
return $this->container;
}
/**
* {@inheritdoc
*/
public function createBuilder($type = '', array $options = array())
{
$resolver = new OptionsResolver();
$this->configureOptions($resolver);
$options = $resolver->resolve($options);
$name = $options['table_class'];
unset($options['table_class']);
if ($type instanceof TableTypeInterface)
{
$builderType = $type->getBuilderType();
}
else
{
$builderType = $type;
}
// todo resolving via dependency injection container
$tableBuilderClass = "Tactics\\TableBundle\\Extension\\Builder\\" . \Symfony\Component\DependencyInjection\Container::camelize($builderType) . 'TableBuilder';
if (! class_exists($tableBuilderClass))
{
throw new UnknownTypeException("TableBuilder type '" . $builderType . "' could not be resolved. (Guess was: $tableBuilderClass )");
}
// todo table type as option.. somehow
$builder = new $tableBuilderClass($name, '', $this, $options);
if ($type instanceof TableTypeInterface)
{
$type->build($builder, $options);
}
return $builder;
}
/**
* {@inheritdoc}
*/
public function createTable($name, $type = '', array $options = array())
{
// todo resolving via dependency injection container
$tableClass = "Tactics\\TableBundle\\Extension\\Table\\" . \Symfony\Component\DependencyInjection\Container::camelize($type) . 'Table';
if (! class_exists($tableClass))
{
throw new UnknownTypeException("Table type '" . $type . "' could not be resolved. (Guess was: $tableClass )");
}
return new $tableClass($name, $options);
}
/**
* {@inheritdoc}
*/
public function createColumn($name, $type = '', ColumnHeaderInterface $columnHeader, array $options = array())
{
// todo resolving via dependency injection container
$columnClass = "Tactics\\TableBundle\\Extension\\Type\\" . \Symfony\Component\DependencyInjection\Container::camelize($type) . 'Column';
if (! class_exists($columnClass))
{
throw new UnknownTypeException("Column type '" . $type . "' could not be resolved. (Guess was: $columnClass )");
}
return new $columnClass($name, $columnHeader, $options, $this->getColumnExtensionsForType($type));
}
/**
* {@inheritdoc}
*/
public function createColumnHeader($name, $type = '', array $options = array())
{
$columnHeaderClass = "Tactics\\TableBundle\\Extension\\Type\\" . \Symfony\Component\DependencyInjection\Container::camelize($type) . 'ColumnHeader';
if (! class_exists($columnHeaderClass))
{
throw new UnknownTypeException("ColumnHeader type '" . $type . "' could not be resolved. (Guess was: $columnHeaderClass )");
}
$type = new $columnHeaderClass($name, $options);
return $type;
}
/**
* Sets the default options for this type.
*
* @param OptionsResolver $resolver The resolver for the options.
*/
public function configureOptions(OptionsResolver $resolver)
{
$resolver->setDefined(array('model_criteria', 'query', 'repository', 'table_class', 'filter', 'namespace', 'default_sort'));
$resolver->setDefined(array('header_type', 'column_type'));
$resolver
->setDefaults(array(
'table_class' => 'table',
));
return $resolver;
}
/**
* Returns column extensions for the given type
*
* @param string $type
*
* @return array[]ColumnTypeExtensionInterface
*/
protected function getColumnExtensionsForType($type)
{
// todo: extensions per type; take into account type inheritance?
return $this->columnExtensions;
}
/**
* Returns header extensions for the given type
*
* @param string $type
*
* @return array[]HeaderTypeExtensionInterface
*/
protected function getHeaderExtensionsForType($type)
{
// todo: extensions per type; take into account type inheritance?
return $this->headerExtensions;
}
}