-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathButtonRenderer.php
637 lines (560 loc) · 21.7 KB
/
ButtonRenderer.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
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
<?php
/**
* This file is part of contao-community-alliance/dc-general.
*
* (c) 2013-2019 Contao Community Alliance.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* This project is provided in good faith and hope to be usable by anyone.
*
* @package contao-community-alliance/dc-general
* @author Christian Schiffler <[email protected]>
* @author binron <[email protected]>
* @author Sven Baumann <[email protected]>
* @author Ingolf Steinhardt <[email protected]>
* @author Richard Henkenjohann <[email protected]>
* @copyright 2013-2019 Contao Community Alliance.
* @license https://github.com/contao-community-alliance/dc-general/blob/master/LICENSE LGPL-3.0-or-later
* @filesource
*/
namespace ContaoCommunityAlliance\DcGeneral\Contao\View\Contao2BackendView;
use Contao\Image;
use Contao\StringUtil;
use ContaoCommunityAlliance\Contao\Bindings\ContaoEvents;
use ContaoCommunityAlliance\Contao\Bindings\Events\Backend\AddToUrlEvent;
use ContaoCommunityAlliance\Contao\Bindings\Events\Image\GenerateHtmlEvent;
use ContaoCommunityAlliance\DcGeneral\Clipboard\Filter;
use ContaoCommunityAlliance\DcGeneral\Clipboard\ItemInterface;
use ContaoCommunityAlliance\DcGeneral\Contao\DataDefinition\Definition\Contao2BackendViewDefinitionInterface;
use ContaoCommunityAlliance\DcGeneral\Contao\View\Contao2BackendView\Event\GetOperationButtonEvent;
use ContaoCommunityAlliance\DcGeneral\Contao\View\Contao2BackendView\Event\GetPasteButtonEvent;
use ContaoCommunityAlliance\DcGeneral\Controller\ModelCollector;
use ContaoCommunityAlliance\DcGeneral\Data\CollectionInterface;
use ContaoCommunityAlliance\DcGeneral\Data\ModelId;
use ContaoCommunityAlliance\DcGeneral\Data\ModelInterface;
use ContaoCommunityAlliance\DcGeneral\Data\MultiLanguageDataProviderInterface;
use ContaoCommunityAlliance\DcGeneral\DataDefinition\Definition\View\CommandCollectionInterface;
use ContaoCommunityAlliance\DcGeneral\DataDefinition\Definition\View\CommandInterface;
use ContaoCommunityAlliance\DcGeneral\DataDefinition\Definition\View\CopyCommandInterface;
use ContaoCommunityAlliance\DcGeneral\DataDefinition\Definition\View\CutCommandInterface;
use ContaoCommunityAlliance\DcGeneral\DataDefinition\Definition\View\ToggleCommandInterface;
use ContaoCommunityAlliance\DcGeneral\DataDefinition\Definition\View\TranslatedToggleCommandInterface;
use ContaoCommunityAlliance\DcGeneral\EnvironmentInterface;
use ContaoCommunityAlliance\Translator\TranslatorInterface;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
/**
* This class is an helper for rendering the operation buttons in the views.
*/
class ButtonRenderer
{
/**
* The ids of all circular contained models.
*
* @var string[]
*/
private $circularModelIds;
/**
* The clipboard items in use.
*
* @var ItemInterface[]
*/
private $clipboardItems;
/**
* The models for the clipboard items.
*
* @var CollectionInterface
*/
private $clipboardModels;
/**
* The clipboard in use.
*
* @var CommandCollectionInterface
*/
private $commands;
/**
* The environment.
*
* @var EnvironmentInterface
*/
private $environment;
/**
* The event dispatcher.
*
* @var EventDispatcherInterface
*/
private $eventDispatcher;
/**
* The translator in use.
*
* @var TranslatorInterface
*/
private $translator;
/**
* Create a new instance.
*
* @param EnvironmentInterface $environment The environment.
*/
public function __construct(EnvironmentInterface $environment)
{
$this->environment = $environment;
$this->translator = $environment->getTranslator();
$this->eventDispatcher = $environment->getEventDispatcher();
$this->clipboardItems = $this->calculateClipboardItems();
$dataDefinition = $environment->getDataDefinition();
$this->commands = $dataDefinition
->getDefinition(Contao2BackendViewDefinitionInterface::NAME)
->getModelCommands();
$controller = $environment->getController();
$this->clipboardModels = $controller->getModelsFromClipboardItems($this->clipboardItems);
$this->circularModelIds = [];
// We must only check for CUT operation here as pasting copy'ed parents is allowed.
$cutItems = \array_filter($this->clipboardItems, function ($item) {
/** @var ItemInterface $item */
return $item->getAction() === $item::CUT;
});
$cutModels = $controller->getModelsFromClipboardItems($cutItems);
$collector = new ModelCollector($environment);
foreach ($cutModels as $model) {
$providerName = $model->getProviderName();
foreach ($collector->collectChildrenOf($model) as $subModel) {
$this->circularModelIds[] = ModelId::fromValues($providerName, $subModel)->getSerialized();
}
}
}
/**
* Render the operation buttons for the passed models.
*
* @param CollectionInterface $collection The collection containing the models.
*
* @return void
*/
public function renderButtonsForCollection(CollectionInterface $collection)
{
// Generate buttons.
foreach ($collection as $i => $model) {
$previous = $collection->get($i - 1);
$next = $collection->get($i + 1);
/** @var ModelInterface $model */
$this->renderButtonsFor($model, $previous, $next);
}
}
/**
* Render the operation buttons for the passed model.
*
* @param ModelInterface $model The model to render the buttons for.
* @param ModelInterface $previous The previous model in the collection.
* @param ModelInterface $next The next model in the collection.
*
* @return void
*/
private function renderButtonsFor(
ModelInterface $model,
ModelInterface $previous = null,
ModelInterface $next = null
) {
$modelId = ModelId::fromModel($model)->getSerialized();
if ($this->clipboardItems) {
$isCircular = \in_array(ModelId::fromModel($model)->getSerialized(), $this->circularModelIds);
} else {
$isCircular = false;
}
$childIds = $this->getChildIds($model);
$buttons = [];
foreach ($this->commands->getCommands() as $command) {
$buttons[$command->getName()] =
$this->buildCommand($command, $model, $previous, $next, $isCircular, $childIds);
}
if ($this->hasPasteNewButton()) {
$buttons['pasteNew'] = $this->renderPasteNewFor($modelId);
}
// Add paste into/after icons.
if ($this->hasPasteButtons()) {
$urlAfter = $this->addToUrl(\sprintf('act=paste&after=%s&', $modelId));
$urlInto = $this->addToUrl(\sprintf('act=paste&into=%s&', $modelId));
$buttonEvent = new GetPasteButtonEvent($this->environment);
$buttonEvent
->setModel($model)
->setCircularReference($isCircular)
->setPrevious($previous)
->setNext($next)
->setHrefAfter($urlAfter)
->setHrefInto($urlInto)
// Check if the id is in the ignore list.
->setPasteAfterDisabled($isCircular)
->setPasteIntoDisabled($isCircular)
->setContainedModels($this->clipboardModels);
$this->eventDispatcher->dispatch(GetPasteButtonEvent::NAME, $buttonEvent);
$buttons['pasteafter'] = $this->renderPasteAfterButton($buttonEvent);
if ($this->isHierarchical()) {
$buttons['pasteinto'] = $this->renderPasteIntoButton($buttonEvent);
}
}
$model->setMeta(
$model::OPERATION_BUTTONS,
\implode(' ', $buttons)
);
}
/**
* If the view is hierarchical.
*
* @return bool
*/
private function isHierarchical()
{
$dataDefinition = $this->environment->getDataDefinition();
$basicDefinition = $dataDefinition->getBasicDefinition();
return $basicDefinition::MODE_HIERARCHICAL === $basicDefinition->getMode();
}
/**
* Determining if into and after buttons shall be examined.
*
* @return bool
*/
private function hasPasteButtons()
{
return ((true === (bool) ViewHelpers::getManualSortingProperty($this->environment))
&& false === empty($this->clipboardItems));
}
/**
* Determining if paste new buttons shall be examined.
*
* @return bool
*/
private function hasPasteNewButton()
{
$environment = $this->environment;
$basicDefinition = $environment->getDataDefinition()->getBasicDefinition();
return ((true === (bool) ViewHelpers::getManualSortingProperty($environment))
&& (true === empty($this->clipboardItems))
&& (false === $this->isHierarchical())
&& ($basicDefinition->isEditable() && $basicDefinition->isCreatable()));
}
/**
* Render a command button.
*
* @param CommandInterface $command The command to render the button for.
* @param ModelInterface $model The model to which the command shall get applied.
* @param ModelInterface $previous The previous model in the collection.
* @param ModelInterface $next The next model in the collection.
* @param bool $isCircularReference Determinator if there exists a circular reference between the model
* and the model(s) contained in the clipboard.
* @param string[] $childIds The ids of all child models.
*
* @return string
*/
private function buildCommand($command, $model, $previous, $next, $isCircularReference, $childIds)
{
$extra = (array) $command->getExtra();
$attributes = '';
if (!empty($extra['attributes'])) {
$attributes .= \sprintf($extra['attributes'], $model->getID());
}
$icon = $extra['icon'];
if ($command instanceof ToggleCommandInterface) {
$iconDisabled = ($extra['icon_disabled'] ?? 'invisible.svg');
$attributes .= \sprintf(
' onclick="Backend.getScrollOffset(); return BackendGeneral.toggleVisibility(this, \'%s\', \'%s\');"',
$icon,
$iconDisabled
);
if (!$this->isTogglerInActiveState($command, $model)) {
$icon = $iconDisabled;
}
}
$buttonEvent = new GetOperationButtonEvent($this->environment);
$buttonEvent
->setKey($command->getName())
->setCommand($command)
->setObjModel($model)
->setAttributes($attributes)
->setLabel($this->getCommandLabel($command))
->setTitle(\sprintf($this->translate((string) $command->getDescription()), $model->getID()))
->setHref($this->calculateHref($command, $model))
->setChildRecordIds($childIds)
->setCircularReference($isCircularReference)
->setPrevious($previous)
->setNext($next)
->setDisabled($command->isDisabled());
$this->eventDispatcher->dispatch(GetOperationButtonEvent::NAME, $buttonEvent);
if (null !== ($html = $buttonEvent->getHtml())) {
// If the event created a button, use it.
return \trim($html);
}
if ($buttonEvent->isDisabled()) {
$iconDisabledSuffix = '_1';
// Check wheter icon is part of contao
if ($icon !== Image::getPath($icon)) {
$iconDisabledSuffix = '_';
}
return $this->renderImageAsHtml(
\substr_replace($icon, $iconDisabledSuffix, \strrpos($icon, '.'), 0),
$buttonEvent->getLabel()
);
}
return \sprintf(
' <a class="%s" href="%s" title="%s" %s>%s</a>',
$command->getName(),
$buttonEvent->getHref(),
StringUtil::specialchars($buttonEvent->getTitle()),
\ltrim($buttonEvent->getAttributes()),
$this->renderImageAsHtml($icon, $buttonEvent->getLabel())
);
}
/**
* Recursively determine all child ids of the passed model.
*
* @param ModelInterface $model The model to fetch the ids from.
*
* @return string[]
*/
private function getChildIds(ModelInterface $model)
{
if (null === ($childCollections = $model->getMeta($model::CHILD_COLLECTIONS))) {
return [];
}
$ids = [ModelId::fromModel($model)->getSerialized()];
$childIds = [];
foreach ($childCollections as $collection) {
foreach ($collection as $child) {
$childIds[] = $this->getChildIds($child);
}
}
return \array_merge($ids, ...$childIds);
}
/**
* Calculate the special parameters for certain operations.
*
* @param CommandInterface $command The command.
* @param string $serializedModelId The model id to use.
*
* @return string[]
*/
private function calculateParameters(CommandInterface $command, $serializedModelId)
{
$parameters = (array) $command->getParameters();
if ($command instanceof ToggleCommandInterface) {
// Toggle has to trigger the javascript.
$parameters['act'] = $command->getName();
$parameters['id'] = $serializedModelId;
return $parameters;
}
if (($command instanceof CutCommandInterface) || ($command instanceof CopyCommandInterface)) {
// Cut & copy need some special information.
$parameters = [];
$parameters['act'] = $command->getName();
$inputProvider = $this->environment->getInputProvider();
// If we have a pid add it, used for mode 4 and all parent -> current views.
if ($inputProvider->hasParameter('pid')) {
$parameters['pid'] = $inputProvider->getParameter('pid');
}
// Source is the id of the element which should move.
$parameters['source'] = $serializedModelId;
return $parameters;
}
$extra = (array) $command->getExtra();
$parameters[($extra['idparam'] ?? null) ?: 'id'] = $serializedModelId;
return $parameters;
}
/**
* Render the "paste new" button.
*
* @param string $modelId The model id for which to create the paste new button.
*
* @return string
*/
private function renderPasteNewFor($modelId)
{
$label = \sprintf($this->translate('pastenew.1'), ModelId::fromSerialized($modelId)->getId());
return \sprintf(
'<a href="%s" title="%s" onclick="Backend.getScrollOffset()">%s</a>',
$this->addToUrl('act=create&after=' . $modelId),
StringUtil::specialchars($label),
$this->renderImageAsHtml('new.svg', $label)
);
}
/**
* Render the paste into button.
*
* @param GetPasteButtonEvent $event The event that has been triggered.
*
* @return string
*/
private function renderPasteIntoButton(GetPasteButtonEvent $event)
{
if (null !== ($value = $event->getHtmlPasteInto())) {
return $value;
}
$label = $this->translate('pasteinto.0');
if ($event->isPasteIntoDisabled()) {
return $this->renderImageAsHtml('pasteinto_.svg', $label, 'class="blink"');
}
if ('pasteinto.1' !== ($opDesc = $this->translate('pasteinto.1'))) {
$title = \sprintf($opDesc, $event->getModel()->getId());
} else {
$title = \sprintf('%s id %s', $label, $event->getModel()->getId());
}
return \sprintf(
' <a href="%s" title="%s" onclick="Backend.getScrollOffset()">%s</a>',
$event->getHrefInto(),
StringUtil::specialchars($title),
$this->renderImageAsHtml('pasteinto.svg', $label, 'class="blink"')
);
}
/**
* Render the paste after button.
*
* @param GetPasteButtonEvent $event The event that has been triggered.
*
* @return string
*/
private function renderPasteAfterButton(GetPasteButtonEvent $event)
{
if (null !== ($value = $event->getHtmlPasteAfter())) {
return $value;
}
$label = $this->translate('pasteafter.0');
if ($event->isPasteAfterDisabled()) {
return $this->renderImageAsHtml('pasteafter_.svg', $label, 'class="blink"');
}
if ('pasteafter.1' !== ($opDesc = $this->translate('pasteafter.1'))) {
$title = \sprintf($opDesc, $event->getModel()->getId());
} else {
$title = \sprintf('%s id %s', $label, $event->getModel()->getId());
}
return \sprintf(
' <a href="%s" title="%s" onclick="Backend.getScrollOffset()">%s</a>',
$event->getHrefAfter(),
StringUtil::specialchars($title),
$this->renderImageAsHtml('pasteafter.svg', $label, 'class="blink"')
);
}
/**
* Calculate all clipboard items for the current view.
*
* @return ItemInterface[]
*/
private function calculateClipboardItems()
{
$dataDefinition = $this->environment->getDataDefinition();
$basicDefinition = $dataDefinition->getBasicDefinition();
$clipboard = $this->environment->getClipboard();
$filter = new Filter();
$filter->andModelIsFromProvider($basicDefinition->getDataProvider());
if ($parentDataProviderName = $basicDefinition->getParentDataProvider()) {
$filter->andParentIsFromProvider($parentDataProviderName);
} else {
$filter->andHasNoParent();
}
return $clipboard->fetch($filter);
}
/**
* Translate a string via the translator.
*
* @param string $path The path within the translation where the string can be found.
*
* @return string
*/
protected function translate($path)
{
$value = $this->translator->translate($path, $this->environment->getDataDefinition()->getName());
if ($path !== $value) {
return $value;
}
return $this->translator->translate($path);
}
/**
* Render an image as HTML string.
*
* @param string $src The image path.
* @param string $alt An optional alt attribute.
* @param string $attributes A string of other attributes.
*
* @return string
*/
private function renderImageAsHtml($src, $alt, $attributes = '')
{
/** @var GenerateHtmlEvent $imageEvent */
$imageEvent = $this->eventDispatcher->dispatch(
ContaoEvents::IMAGE_GET_HTML,
new GenerateHtmlEvent($src, $alt, $attributes)
);
return $imageEvent->getHtml();
}
/**
* Add some url parameters to the current URL.
*
* @param string $parameters The parameters to add.
*
* @return string
*/
private function addToUrl($parameters)
{
/** @var AddToUrlEvent $urlAfter */
$urlAfter = $this->eventDispatcher->dispatch(ContaoEvents::BACKEND_ADD_TO_URL, new AddToUrlEvent($parameters));
return $urlAfter->getUrl();
}
/**
* Determine the toggle state of a toggle command.
*
* @param ToggleCommandInterface $command The toggle command.
* @param ModelInterface $model The model in scope.
*
* @return bool
*/
private function isTogglerInActiveState($command, $model)
{
$dataProvider = $this->environment->getDataProvider($model->getProviderName());
$propModel = $model;
if ($command instanceof TranslatedToggleCommandInterface
&& $dataProvider instanceof MultiLanguageDataProviderInterface
) {
$language = $dataProvider->getCurrentLanguage();
$dataProvider->setCurrentLanguage($command->getLanguage());
$propModel = $dataProvider->fetch(
$dataProvider
->getEmptyConfig()
->setId($model->getId())
->setFields([$command->getToggleProperty()])
);
$dataProvider->setCurrentLanguage($language);
}
if ($command->isInverse()) {
return !$propModel->getProperty($command->getToggleProperty());
}
return (bool) $propModel->getProperty($command->getToggleProperty());
}
/**
* Calculate the href for a command.
*
* @param CommandInterface $command The command.
* @param ModelInterface $model The current model.
*
* @return string
*/
private function calculateHref(CommandInterface $command, $model)
{
$parameters = $this->calculateParameters($command, ModelId::fromModel($model)->getSerialized());
$href = '';
foreach ($parameters as $key => $value) {
$href .= \sprintf('&%s=%s', $key, $value);
}
return $this->addToUrl($href);
}
/**
* Get the correct label for a command button.
*
* @param CommandInterface $command The command.
*
* @return string
*/
private function getCommandLabel(CommandInterface $command)
{
if (null === $label = $command->getLabel()) {
$label = $command->getName();
}
$label = $this->translate($label);
return \is_array($label) ? $label[0] : $label;
}
}