-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContainer.php
411 lines (355 loc) · 10.4 KB
/
Container.php
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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
<?php
/**
* This file is part of the Grido (http://grido.bugyik.cz)
*
* Copyright (c) 2011 Petr Bugyík (http://petr.bugyik.cz)
*
* For the full copyright and license information, please view
* the file license.md that was distributed with this source code.
*/
namespace Grido\Components;
use Grido\Components\Actions\Action;
use Grido\Components\Columns\Column;
use Grido\Components\Columns\Editable;
use Grido\Components\Filters\Filter;
use Grido\Helpers;
/**
* Container of grid components.
*
* @package Grido
* @subpackage Components
* @author Petr Bugyík
*
*/
abstract class Container extends \Nette\Application\UI\Control
{
/** @var bool */
protected $hasColumns;
/** @var bool */
protected $hasFilters;
/** @var bool */
protected $hasActions;
/** @var bool */
protected $hasOperation;
/** @var bool */
protected $hasExport;
/**
* Returns column component.
* @param string $name
* @param bool $need
* @return Editable
*/
public function getColumn($name, $need = TRUE)
{
return $this->hasColumns()
? $this->getComponent(Column::ID)->getComponent(Helpers::formatColumnName($name), $need)
: NULL;
}
/**
* Returns filter component.
* @param string $name
* @param bool $need
* @return Filter
*/
public function getFilter($name, $need = TRUE)
{
return $this->hasFilters()
? $this->getComponent(Filter::ID)->getComponent(Helpers::formatColumnName($name), $need)
: NULL;
}
/**
* Returns action component.
* @param string $name
* @param bool $need
* @return Action
*/
public function getAction($name, $need = TRUE)
{
return $this->hasActions()
? $this->getComponent(Action::ID)->getComponent($name, $need)
: NULL;
}
/**
* Returns operations component.
* @param bool $need
* @return Operation
*/
public function getOperation($need = TRUE)
{
return $this->getComponent(Operation::ID, $need);
}
/**
* Returns export component.
* @param bool $need
* @return Export
*/
public function getExport($need = TRUE)
{
return $this->getComponent(Export::ID, $need);
}
/**********************************************************************************************/
/**
* @param bool $useCache
* @return bool
* @internal
*/
public function hasColumns($useCache = TRUE)
{
$hasColumns = $this->hasColumns;
if ($hasColumns === NULL || $useCache === FALSE) {
$container = $this->getComponent(Column::ID, FALSE);
$hasColumns = $container && count($container->getComponents()) > 0;
$this->hasColumns = $useCache ? $hasColumns : NULL;
}
return $hasColumns;
}
/**
* @param bool $useCache
* @return bool
* @internal
*/
public function hasFilters($useCache = TRUE)
{
$hasFilters = $this->hasFilters;
if ($hasFilters === NULL || $useCache === FALSE) {
$container = $this->getComponent(Filter::ID, FALSE);
$hasFilters = $container && count($container->getComponents()) > 0;
$this->hasFilters = $useCache ? $hasFilters : NULL;
}
return $hasFilters;
}
/**
* @param bool $useCache
* @return bool
* @internal
*/
public function hasActions($useCache = TRUE)
{
$hasActions = $this->hasActions;
if ($hasActions === NULL || $useCache === FALSE) {
$container = $this->getComponent(Action::ID, FALSE);
$hasActions = $container && count($container->getComponents()) > 0;
$this->hasActions = $useCache ? $hasActions : NULL;
}
return $hasActions;
}
/**
* @param bool $useCache
* @return bool
* @internal
*/
public function hasOperation($useCache = TRUE)
{
$hasOperation = $this->hasOperation;
if ($hasOperation === NULL || $useCache === FALSE) {
$hasOperation = (bool) $this->getComponent(Operation::ID, FALSE);
$this->hasOperation = $useCache ? $hasOperation : NULL;
}
return $hasOperation;
}
/**
* @param bool $useCache
* @return bool
* @internal
*/
public function hasExport($useCache = TRUE)
{
$hasExport = $this->hasExport;
if ($hasExport === NULL || $useCache === FALSE) {
$hasExport = (bool) $this->getComponent(Export::ID, FALSE);
$this->hasExport = $useCache ? $hasExport : NULL;
}
return $hasExport;
}
/**********************************************************************************************/
/**
* @param string $name
* @param string $label
* @return Columns\Text
*/
public function addColumnText($name, $label)
{
return new Columns\Text($this, $name, $label);
}
/**
* @deprecated
*/
public function addColumnMail($name, $label)
{
trigger_error(__METHOD__ . '() is deprecated; use addColumnEmail() instead.', E_USER_DEPRECATED);
return $this->addColumnEmail($name, $label);
}
/**
* @param string $name
* @param string $label
* @return Columns\Email
*/
public function addColumnEmail($name, $label)
{
return new Columns\Email($this, $name, $label);
}
/**
* @deprecated
*/
public function addColumnHref($name, $label)
{
trigger_error(__METHOD__ . '() is deprecated; use addColumnLink() instead.', E_USER_DEPRECATED);
return new Columns\Link($this, $name, $label);
}
/**
* @param string $name
* @param string $label
* @return Columns\Link
*/
public function addColumnLink($name, $label)
{
return new Columns\Link($this, $name, $label);
}
/**
* @param string $name
* @param string $label
* @param string $dateFormat
* @return Columns\Date
*/
public function addColumnDate($name, $label, $dateFormat = NULL)
{
return new Columns\Date($this, $name, $label, $dateFormat);
}
/**
* @param string $name
* @param string $label
* @param int $decimals number of decimal points
* @param string $decPoint separator for the decimal point
* @param string $thousandsSep thousands separator
* @return Columns\Number
*/
public function addColumnNumber($name, $label, $decimals = NULL, $decPoint = NULL, $thousandsSep = NULL)
{
return new Columns\Number($this, $name, $label, $decimals, $decPoint, $thousandsSep);
}
/**********************************************************************************************/
/**
* @param string $name
* @param string $label
* @return Filters\Text
*/
public function addFilterText($name, $label)
{
return new Filters\Text($this, $name, $label);
}
/**
* @param string $name
* @param string $label
* @return Filters\Date
*/
public function addFilterDate($name, $label)
{
return new Filters\Date($this, $name, $label);
}
/**
* @param string $name
* @param string $label
* @return Filters\DateRange
*/
public function addFilterDateRange($name, $label)
{
return new Filters\DateRange($this, $name, $label);
}
/**
* @param string $name
* @param string $label
* @return Filters\Check
*/
public function addFilterCheck($name, $label)
{
return new Filters\Check($this, $name, $label);
}
/**
* @param string $name
* @param string $label
* @param array $items
* @return Filters\Select
*/
public function addFilterSelect($name, $label, array $items = NULL)
{
return new Filters\Select($this, $name, $label, $items);
}
/**
* @param string $name
* @param string $label
* @return Filters\Number
*/
public function addFilterNumber($name, $label)
{
return new Filters\Number($this, $name, $label);
}
/**
* @param string $name
* @param \Nette\Forms\IControl $formControl
* @return Filters\Custom
*/
public function addFilterCustom($name, \Nette\Forms\IControl $formControl)
{
return new Filters\Custom($this, $name, NULL, $formControl);
}
/**********************************************************************************************/
/**
* @param string $name
* @param string $label
* @param string $destination
* @param array $args
* @return Actions\Href
*/
public function addActionHref($name, $label, $destination = NULL, array $args = NULL)
{
return new Actions\Href($this, $name, $label, $destination, $args);
}
/**
* @param string $name
* @param string $label
* @param callback $onClick
* @return Actions\Event
*/
public function addActionEvent($name, $label, $onClick = NULL)
{
return new Actions\Event($this, $name, $label, $onClick);
}
/**********************************************************************************************/
/**
* @param array $operations
* @param callback $onSubmit - callback after operation submit
* @return Operation
*/
public function setOperation(array $operations, $onSubmit)
{
return new Operation($this, $operations, $onSubmit);
}
/**
* @param string $label of exporting file
* @return Export
*/
public function setExport($label = NULL)
{
return new Export($this, $label);
}
/**
* Sets all columns as editable.
* Callback is optional for user implementation of method for saving modified data.
* @param callback $callback function($id, $newValue, $oldValue, Editable $column) {}
* @return \Grido\Grid
*/
public function setEditableColumns($callback = NULL)
{
$this->onRegistered[] = function(\Grido\Grid $grid) use ($callback) {
if (!$grid->hasColumns()) {
return;
}
foreach ($grid->getComponent(Column::ID)->getComponents() as $column) {
if ($column instanceof Editable && !$column->isEditableDisabled() && !$column->editableCallback) {
$column->setEditable($callback);
}
}
};
return $this;
}
}