19 declare(strict_types=1);
43 $ui_factory = $DIC->ui()->factory();
46 $target = $DIC->http()->request()->getRequestTarget();
50 $tpl->addCss(
'src/UI/examples/Table/Presentation/presentation_alignment_example.css');
56 $aria_label =
"filter entries";
57 $active_view_control =
'Alle';
59 "Alle" => $target .
'&all=1',
60 "Mehr als 5 Antworten" => $target .
'&all=0' 64 $active_view_control =
'Mehr als 5 Antworten';
66 $view_controls = array(
67 $ui_factory->viewControl()->mode($actions, $aria_label)->withActive($active_view_control)
71 $modal = $ui_factory->modal()->interruptive(
'zur Frage',
'This is just an example',
'#')
72 ->withActionButtonLabel(
'Go');
74 $mapping_closure =
function ($row, $record, $ui_factory, $environment) use ($modal) {
76 ->withHeadline($record[
'question_title'])
78 $ui_factory->symbol()->icon()->custom(
'assets/images/standard/icon_ques.svg',
'')
80 ->withSubheadline($record[
'question_txt'])
81 ->withImportantFields(
84 'Beantwortet: ' => $record[
'stats'][
'total'],
85 'Häufigste Antwort: ' => $record[
'answers'][$record[
'stats'][
'most_common']][
'title']
89 $ui_factory->layout()->alignment()->horizontal()->dynamicallyDistributed(
90 $ui_factory->layout()->alignment()->vertical(
91 $ui_factory->listing()->descriptive([
92 'Werte' => $environment[
'totals']($record[
'answers'])
94 $ui_factory->listing()->descriptive([
95 'Chart' => $environment[
'chart']($record[
'answers'])
98 $ui_factory->listing()->descriptive([
99 '' => $environment[
'stats']($record)
104 $ui_factory->button()->standard(
'zur Frage',
'#')
105 ->withOnClick($modal->getShowSignal())
109 $ptable = $ui_factory->table()->presentation(
110 'Presentation Table with Alignments',
120 $ptable->withData(
$data)
126 $totals =
function ($answers) {
127 $ret =
'<div class="example_block content"><table>';
128 $ret .=
'<tr><td></td>' 130 .
'<td style="padding-left: 10px;">Proportion</td></tr>';
132 foreach ($answers as $answer) {
134 .
'<td style="padding-right: 10px;">' . $answer[
'title'] .
'</td>' 135 .
'<td style="text-align:right">' . $answer[
'amount'] .
'</td>' 136 .
'<td style="text-align:right">' . $answer[
'proportion'] .
'%</td>' 140 $ret .=
'</table></div>';
144 $chart =
function ($answers) {
145 $ret =
'<div class="example_block content"><table style="width:100%">';
146 foreach ($answers as $answer) {
147 $ret .=
'<tr style="border-bottom: 1px solid black;">' 148 .
'<td style="width: 200px;">' 151 .
'<div style="background-color:grey; height:20px; width:' . $answer[
'proportion'] .
'%;"></div>' 154 $ret .=
'</table></div>';
158 $stats =
function ($answers) {
160 $ui_factory = $DIC->ui()->factory();
161 $ui_renderer = $DIC->ui()->renderer();
163 $icon = $ui_factory->symbol()->icon()->custom(
'assets/images/standard/icon_ques.svg',
'');
165 $ret =
'<div class="example_block stats">';
166 $ret .=
'<h5>' . $ui_renderer->render($icon) .
' ' . $answers[
'type'] .
'</h5>';
167 $ret .=
'<span class="c-stats--title">Beantwortet:</span> ' 168 . $answers[
'stats'][
'total'] .
'<br>' 169 .
'<span class="c-stats--title">Übersprungen:</span> ' 170 . $answers[
'stats'][
'skipped'] .
'<br>' 171 .
'<span class="c-stats--title">Häufigste Antwort:</span> ' 172 . $answers[
'answers'][$answers[
'stats'][
'most_common']][
'title'] .
'<br>' 173 .
'<span class="c-stats--title">Anzahl Häufigste:</span> ' 174 . $answers[
'stats'][
'most_common_total'] .
'<br>' 175 .
'<span class="c-stats--title">Median:</span> ' 176 . $answers[
'answers'][$answers[
'stats'][
'median']][
'title'];
192 'type' =>
'Single Choice Frage',
193 'question_title' =>
'Belastbarkeit',
194 'question_txt' =>
'Wie ausgeprägt ist die Belastbarkeit des / der Auszubildenden?',
196 array(
'title' =>
'weniger ausgeprägt',
'amount' => 2,
'proportion' => 20),
197 array(
'title' =>
'teilweise ausgeprägt',
'amount' => 0,
'proportion' => 0),
198 array(
'title' =>
'ausgeprägt',
'amount' => 6,
'proportion' => 60),
199 array(
'title' =>
'deutlich ausgeprägt',
'amount' => 1,
'proportion' => 10),
200 array(
'title' =>
'stark ausgeprägt',
'amount' => 0,
'proportion' => 0),
201 array(
'title' =>
'sehr stark ausgeprägt',
'amount' => 0,
'proportion' => 0),
202 array(
'title' =>
'übermäßig ausgeprägt',
'amount' => 1,
'proportion' => 10)
208 'most_common_total' => 6,
214 'type' =>
'Single Choice Frage',
215 'question_title' =>
'Dialogfähigkeit, Kundenorientierung, Beratungsfähigkeit',
216 'question_txt' =>
'Wie ausgeprägt ist die Dialogfähigkeit, Kundenorientierung und Beratungsfähigkeit des / der Auszubildenden?',
218 array(
'title' =>
'weniger ausgeprägt',
'amount' => 0,
'proportion' => 0),
219 array(
'title' =>
'teilweise ausgeprägt',
'amount' => 1,
'proportion' => 100),
220 array(
'title' =>
'ausgeprägt',
'amount' => 0,
'proportion' => 0),
221 array(
'title' =>
'deutlich ausgeprägt',
'amount' => 0,
'proportion' => 0),
222 array(
'title' =>
'stark ausgeprägt',
'amount' => 0,
'proportion' => 0),
223 array(
'title' =>
'sehr stark ausgeprägt',
'amount' => 0,
'proportion' => 0),
224 array(
'title' =>
'übermäßig ausgeprägt',
'amount' => 0,
'proportion' => 0)
230 'most_common_total' => 1,
base1()
description: > Example for rendering a presentation table.