-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathFormatModelLabelSubscriber.php
More file actions
222 lines (196 loc) · 7.96 KB
/
Copy pathFormatModelLabelSubscriber.php
File metadata and controls
222 lines (196 loc) · 7.96 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
219
220
221
222
<?php
/**
* This file is part of contao-community-alliance/dc-general.
*
* (c) 2013-2024 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 <c.schiffler@cyberspectrum.de>
* @author Tristan Lins <tristan.lins@bit3.de>
* @author Sven Baumann <baumann.sv@gmail.com>
* @author Ingolf Steinhardt <info@e-spin.de>
* @author Cliff Parnitzky <github@cliff-parnitzky.de>
* @copyright 2013-2024 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\Subscriber;
use ContaoCommunityAlliance\DcGeneral\Contao\DataDefinition\Definition\Contao2BackendViewDefinitionInterface;
use ContaoCommunityAlliance\DcGeneral\Contao\RequestScopeDeterminatorAwareTrait;
use ContaoCommunityAlliance\DcGeneral\Contao\View\Contao2BackendView\Event\ModelToLabelEvent;
use ContaoCommunityAlliance\DcGeneral\Contao\View\Contao2BackendView\ViewHelpers;
use ContaoCommunityAlliance\DcGeneral\Data\ModelInterface;
use ContaoCommunityAlliance\DcGeneral\DataDefinition\ContainerInterface;
use ContaoCommunityAlliance\DcGeneral\DataDefinition\Definition\PropertiesDefinitionInterface;
use ContaoCommunityAlliance\DcGeneral\DataDefinition\Definition\View\GroupAndSortingDefinitionInterface;
use ContaoCommunityAlliance\DcGeneral\DataDefinition\Definition\View\GroupAndSortingInformationInterface;
use ContaoCommunityAlliance\DcGeneral\EnvironmentInterface;
use ContaoCommunityAlliance\DcGeneral\Event\FormatModelLabelEvent;
/**
* This class is the base foundation for a command event.
*/
class FormatModelLabelSubscriber
{
use RequestScopeDeterminatorAwareTrait;
/**
* Default handler for formatting a model.
*
* @param FormatModelLabelEvent $event The event.
*
* @return void
*/
public function handleFormatModelLabel(FormatModelLabelEvent $event)
{
if (!$this->getScopeDeterminator()->currentScopeIsBackend()) {
return;
}
$environment = $event->getEnvironment();
$model = $event->getModel();
$dataDefinition = $environment->getDataDefinition();
assert($dataDefinition instanceof ContainerInterface);
/** @var Contao2BackendViewDefinitionInterface $viewSection */
$viewSection = $dataDefinition->getDefinition(Contao2BackendViewDefinitionInterface::NAME);
$listing = $viewSection->getListingConfig();
$properties = $dataDefinition->getPropertiesDefinition();
$formatter = $listing->getLabelFormatter($model->getProviderName());
$sorting = ViewHelpers::getGroupingMode($environment);
$firstSorting = $this->getFirstSorting(($sorting['sorting'] ?? null));
$propertyNames = $formatter->getPropertyNames();
$modelToLabelEvent = new ModelToLabelEvent($environment, $model);
$modelToLabelEvent
->setArgs($this->prepareLabelArguments($propertyNames, $properties, $environment, $model))
->setLabel($formatter->getFormat())
->setFormatter($formatter);
if (null === ($dispatcher = $environment->getEventDispatcher())) {
return;
}
$dispatcher->dispatch($modelToLabelEvent, ModelToLabelEvent::NAME);
// Add columns.
if ($listing->getShowColumns()) {
$event->setLabel($this->renderWithColumns($propertyNames, $modelToLabelEvent->getArgs(), $firstSorting));
return;
}
$event->setLabel(
[
[
'colspan' => null,
'class' => 'tl_file_list',
'content' => $this->renderSingleValue(
$modelToLabelEvent->getLabel(),
$modelToLabelEvent->getArgs(),
$formatter->getMaxLength()
)
]
]
);
}
/**
* Retrieve the first sorting value.
*
* @param GroupAndSortingDefinitionInterface|null $sortingDefinition The sorting definition.
*
* @return string
*/
private function getFirstSorting(?GroupAndSortingDefinitionInterface $sortingDefinition = null)
{
if (null === $sortingDefinition) {
return '';
}
foreach ($sortingDefinition as $information) {
/** @var GroupAndSortingInformationInterface $information */
if ($information->getProperty()) {
return $information->getProperty();
}
}
return '';
}
/**
* Prepare the arguments for the label formatter.
*
* @param string[] $propertyNames The properties.
* @param PropertiesDefinitionInterface $properties The property definition.
* @param EnvironmentInterface $environment The environment.
* @param ModelInterface $model The model.
*
* @return array<string, string>
*/
private function prepareLabelArguments(
$propertyNames,
PropertiesDefinitionInterface $properties,
EnvironmentInterface $environment,
ModelInterface $model
) {
$args = [];
foreach ($propertyNames as $propertyName) {
if (!$properties->hasProperty($propertyName)) {
$args[$propertyName] = '-';
continue;
}
$args[$propertyName] = (string) ViewHelpers::getReadableFieldValue(
$environment,
$properties->getProperty($propertyName),
$model
);
}
return $args;
}
/**
* Render for column layout.
*
* @param string[] $propertyNames The properties.
* @param string|array<string, string> $args The rendered arguments.
* @param string $firstSorting The sorting column.
*
* @return array
*/
private function renderWithColumns(array $propertyNames, array|string $args, string $firstSorting)
{
$label = [];
if (!\is_array($args)) {
// @codingStandardsIgnoreStart
@\trigger_error('Warning, column layout without arguments will not be supported.', E_USER_DEPRECATED);
// @codingStandardsIgnoreEnd
$label[] = [
'colspan' => \count($propertyNames),
'class' => 'tl_file_list col_all',
'content' => $args
];
} else {
foreach ($propertyNames as $propertyName) {
$class = 'tl_file_list col_' . $propertyName;
if ($firstSorting === $propertyName) {
$class .= ' ordered_by';
}
$label[] = [
'colspan' => 1,
'class' => $class,
'content' => ($args[$propertyName] ?? '') ?: '-'
];
}
}
return $label;
}
/**
* Render as single value.
*
* @param string $label The label string.
* @param string|array<string, string> $args The rendered arguments.
* @param null|int $maxLength The maximum length for the label or null to allow unlimited.
*
* @return string
*/
private function renderSingleValue(string $label, array|string $args, ?int $maxLength = null)
{
// BC: sometimes the label was returned as string in the arguments instead of an array.
$string = !\is_array($args) ? $args : \vsprintf($label, $args);
if ((null !== $maxLength) && \strlen($string) > $maxLength) {
$string = \substr($string, 0, $maxLength);
}
return $string;
}
}