-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
BaseGroupedMapper.php
454 lines (391 loc) · 12.6 KB
/
BaseGroupedMapper.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
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
<?php
declare(strict_types=1);
/*
* This file is part of the Sonata Project package.
*
* (c) Thomas Rabaix <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sonata\AdminBundle\Mapper;
use Sonata\AdminBundle\Admin\AbstractAdmin;
/**
* NEXT_MAJOR: Stop extending BaseMapper.
*
* This class is used to simulate the Form API.
*
* @author Thomas Rabaix <[email protected]>
*
* @phpstan-template T of object
* @phpstan-implements MapperInterface<T>
* @phpstan-extends BaseMapper<T>
*/
abstract class BaseGroupedMapper extends BaseMapper implements MapperInterface
{
/**
* @var string|null
*/
protected $currentGroup;
/**
* @var string|null
*/
protected $currentTab;
/**
* @var bool[]
*/
protected $apply = [];
/**
* @final since sonata-project/admin-bundle 3.99.
*
* Add new group or tab (if parameter "tab=true" is available in options).
*
* @param string $name
* @param array<string, mixed> $options
*
* @throws \LogicException
*
* @return static
*/
public function with($name, array $options = [])
{
if (!$this->shouldApply()) {
return $this;
}
/*
* The current implementation should work with the following workflow:
*
* $formMapper
* ->with('group1')
* ->add('username')
* ->add('password')
* ->end()
* ->with('tab1', ['tab' => true])
* ->with('group1')
* ->add('username')
* ->add('password')
* ->end()
* ->with('group2', ['collapsed' => true])
* ->add('enabled')
* ->add('createdAt')
* ->end()
* ->end();
*
*/
$defaultOptions = [
'collapsed' => false,
'class' => false,
'description' => false,
'label' => $name, // NEXT_MAJOR: Remove this line and uncomment the next one
// 'label' => $this->getAdmin()->getLabelTranslatorStrategy()->getLabel($name, $this->getName(), 'group'),
'translation_domain' => null,
'name' => $name,
'box_class' => 'box box-primary',
'empty_message' => 'message_form_group_empty',
'empty_message_translation_domain' => 'SonataAdminBundle',
];
// NEXT_MAJOR: remove this code
if ($this->admin instanceof AbstractAdmin && $pool = $this->admin->getConfigurationPool('sonata_deprecation_mute')) {
if ($pool->getContainer('sonata_deprecation_mute')->getParameter('sonata.admin.configuration.translate_group_label')) {
$defaultOptions['label'] = $this->admin->getLabelTranslatorStrategy()->getLabel($name, $this->getName(), 'group');
}
}
$code = $name;
// Open
if (\array_key_exists('tab', $options) && $options['tab']) {
$tabs = $this->getTabs();
if ($this->currentTab) {
if (isset($tabs[$this->currentTab]['auto_created']) && true === $tabs[$this->currentTab]['auto_created']) {
throw new \LogicException('New tab was added automatically when you have added field or group. You should close current tab before adding new one OR add tabs before adding groups and fields.');
}
throw new \LogicException(sprintf(
'You should close previous tab "%s" with end() before adding new tab "%s".',
$this->currentTab,
$name
));
}
if ($this->currentGroup) {
throw new \LogicException(sprintf('You should open tab before adding new group "%s".', $name));
}
if (!isset($tabs[$name])) {
$tabs[$name] = [];
}
$tabs[$code] = array_merge($defaultOptions, [
'auto_created' => false,
'groups' => [],
], $tabs[$code], $options);
$this->currentTab = $code;
} else {
if ($this->currentGroup) {
throw new \LogicException(sprintf(
'You should close previous group "%s" with end() before adding new tab "%s".',
$this->currentGroup,
$name
));
}
if (!$this->currentTab) {
// no tab define
$this->with('default', [
'tab' => true,
'auto_created' => true,
'translation_domain' => $options['translation_domain'] ?? null,
]); // add new tab automatically
}
// if no tab is selected, we go the the main one named '_' ..
if ('default' !== $this->currentTab) {
// groups with the same name can be on different tabs, so we prefix them in order to make unique group name
$code = sprintf('%s.%s', $this->currentTab, $name);
}
$groups = $this->getGroups();
if (!isset($groups[$code])) {
$groups[$code] = [];
}
$groups[$code] = array_merge($defaultOptions, [
'fields' => [],
], $groups[$code], $options);
$this->currentGroup = $code;
$this->setGroups($groups);
$tabs = $this->getTabs();
}
if ($this->currentGroup && isset($tabs[$this->currentTab]) && !\in_array($this->currentGroup, $tabs[$this->currentTab]['groups'], true)) {
$tabs[$this->currentTab]['groups'][] = $this->currentGroup;
}
$this->setTabs($tabs);
return $this;
}
/**
* @final since sonata-project/admin-bundle 3.99.
*
* Only nested add if the condition match true.
*
* @param bool $bool
*
* @return static
*/
public function ifTrue($bool)
{
$this->apply[] = true === $bool;
return $this;
}
/**
* @final since sonata-project/admin-bundle 3.99.
*
* Only nested add if the condition match false.
*
* @param bool $bool
*
* @return static
*/
public function ifFalse($bool)
{
$this->apply[] = false === $bool;
return $this;
}
/**
* @final since sonata-project/admin-bundle 3.99.
*
* @throws \LogicException
*
* @return static
*/
public function ifEnd()
{
if (empty($this->apply)) {
throw new \LogicException('No open ifTrue() or ifFalse(), you cannot use ifEnd()');
}
array_pop($this->apply);
return $this;
}
/**
* @final since sonata-project/admin-bundle 3.99.
*
* Add new tab.
*
* @param string $name
* @param array<string, mixed> $options
*
* @return static
*/
public function tab($name, array $options = [])
{
return $this->with($name, array_merge($options, ['tab' => true]));
}
/**
* @final since sonata-project/admin-bundle 3.99.
*
* Close the current group or tab.
*
* @throws \LogicException
*
* @return static
*/
public function end()
{
if (!$this->shouldApply()) {
return $this;
}
if (null !== $this->currentGroup) {
$this->currentGroup = null;
} elseif (null !== $this->currentTab) {
$this->currentTab = null;
} else {
throw new \LogicException('No open tabs or groups, you cannot use end()');
}
return $this;
}
/**
* @final since sonata-project/admin-bundle 3.99.
*
* Returns a boolean indicating if there is an open tab at the moment.
*
* @return bool
*/
public function hasOpenTab()
{
return null !== $this->currentTab;
}
/**
* @final since sonata-project/admin-bundle 3.99.
*
* Removes a group.
*
* @param string $group The group to delete
* @param string $tab The tab the group belongs to, defaults to 'default'
* @param bool $deleteEmptyTab Whether or not the Tab should be deleted, when the deleted group leaves the tab empty after deletion
*
* @return static
*/
public function removeGroup($group, $tab = 'default', $deleteEmptyTab = false)
{
$groups = $this->getGroups();
// When the default tab is used, the tabname is not prepended to the index in the group array
if ('default' !== $tab) {
$group = sprintf('%s.%s', $tab, $group);
}
if (isset($groups[$group])) {
foreach ($groups[$group]['fields'] as $field) {
$this->remove($field);
}
}
unset($groups[$group]);
$tabs = $this->getTabs();
$key = array_search($group, $tabs[$tab]['groups'], true);
if (false !== $key) {
unset($tabs[$tab]['groups'][$key]);
}
if ($deleteEmptyTab && 0 === \count($tabs[$tab]['groups'])) {
unset($tabs[$tab]);
}
$this->setTabs($tabs);
$this->setGroups($groups);
return $this;
}
/**
* @final since sonata-project/admin-bundle 3.99.
*
* Removes a tab.
*
* @return static
*/
public function removeTab(string $tab): self
{
$groups = $this->getGroups();
$tabs = $this->getTabs();
foreach ($tabs[$tab]['groups'] as $group) {
if (isset($groups[$group])) {
foreach ($groups[$group]['fields'] as $field) {
$this->remove($field);
}
}
unset($groups[$group]);
}
unset($tabs[$tab]);
$this->setTabs($tabs);
$this->setGroups($groups);
return $this;
}
/**
* @return array<string, array<string, mixed>>
*/
abstract protected function getGroups();
/**
* @return array<string, array<string, mixed>>
*/
abstract protected function getTabs();
/**
* @param array<string, array<string, mixed>> $groups
*/
abstract protected function setGroups(array $groups);
/**
* @param array<string, array<string, mixed>> $tabs
*/
abstract protected function setTabs(array $tabs);
/**
* NEXT_MAJOR: make this method abstract.
*
* @return string
*/
protected function getName()
{
@trigger_error(sprintf(
'%s should be implemented and will be abstract in 4.0.',
__METHOD__
), \E_USER_DEPRECATED);
return 'default';
}
/**
* @final since sonata-project/admin-bundle 3.99.
*
* Add the field name to the current group.
*
* @param string $fieldName
*
* @return array<string, mixed>
*/
protected function addFieldToCurrentGroup($fieldName)
{
// Note this line must happen before the next line.
// See https://github.com/sonata-project/SonataAdminBundle/pull/1351
$currentGroup = $this->getCurrentGroupName();
$groups = $this->getGroups();
$groups[$currentGroup]['fields'][$fieldName] = $fieldName;
$this->setGroups($groups);
return $groups[$currentGroup];
}
/**
* @final since sonata-project/admin-bundle 3.99.
*
* Return the name of the currently selected group. The method also makes
* sure a valid group name is currently selected.
*
* Note that this can have the side effect to change the 'group' value
* returned by the getGroup function
*
* @return string
*/
protected function getCurrentGroupName()
{
if (!$this->currentGroup) {
$label = $this->getAdmin()->getLabel();
if (null === $label) {
$this->with('default', [
'auto_created' => true,
'translation_domain' => null,
]);
} else {
$this->with($label, [
'auto_created' => true,
'translation_domain' => $this->getAdmin()->getTranslationDomain(),
]);
}
}
return $this->currentGroup;
}
/**
* Check if all apply conditions are respected.
*/
final protected function shouldApply(): bool
{
return !\in_array(false, $this->apply, true);
}
}