ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
AttemptResultsTable.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
33 
35 {
36  private const ENV = 'e';
37  private const LNG = 'l';
38  private const URL_NAMESPACE = ['taresult', 'vc'];
39  private const PARAM_MODE = 'm';
40  private const MODE_OPT_ALL = "all";
41  private const MODE_OPT_CORRECT = "ok";
42  private const MODE_OPT_INCORRECT = "fail";
43  private const PARAM_SORT = 's';
44  private const SORT_OPT_ORDEROFAPPEARANCE = 'ooa';
45  private const SORT_OPT_POSSIBLESCORE = 'ms';
46 
48 
49  public function __construct(
50  UIFactory $ui_factory,
51  private UIRenderer $ui_renderer,
52  private Refinery $refinery,
53  private HTTPService $http,
54  DataFactory $data_factory,
55  Language $lng,
56  private AttemptResult $test_results,
57  Settings $settings,
58  string $title,
59  bool $for_print
60  ) {
61  list($mode, $sortation) = $this->getViewControlsParameter();
62  $results = $this->applyControls($mode, $sortation, $test_results->getQuestionResults());
63  $target = new URLBuilder($data_factory->uri($http->request()->getUri()->__toString()));
64 
65  $this->table = $ui_factory->table()->presentation(
66  $title,
67  $for_print ? [] : $this->getViewControls($ui_factory, $lng, $target, $mode, $sortation),
68  $this->getMapping()
69  )
70  ->withEnvironment([
71  self::ENV => $settings,
72  self::LNG => $lng
73  ])
74  ->withData($results);
75  }
76 
77  public function render(): string
78  {
79  return $this->ui_renderer->render($this->table);
80  }
81 
83  {
84  return $this->table;
85  }
86 
90  private function applyControls(
91  string $mode,
92  string $sortation,
93  array $question_results
94  ) {
95  switch ($mode) {
96  case self::MODE_OPT_CORRECT:
97  $filter = static fn($qr) => $qr->getCorrect() === QuestionResult::CORRECT_FULL;
98  break;
99  case self::MODE_OPT_INCORRECT:
100  $filter = static fn($qr) => $qr->getCorrect() !== QuestionResult::CORRECT_FULL;
101  break;
102  case self::MODE_OPT_ALL:
103  default:
104  $filter = static fn($qr) => true;
105  }
106  $question_results = array_filter($question_results, $filter);
107 
108  if ($sortation === self::SORT_OPT_POSSIBLESCORE) {
109  usort(
110  $question_results,
111  static fn(QuestionResult $a, QuestionResult $b) => $a->getQuestionScore() <=> $b->getQuestionScore()
112  );
113  $question_results = array_reverse($question_results);
114  }
115  return $question_results;
116  }
117 
118  private function getViewControlNamespace(): array
119  {
120  $namespace = self::URL_NAMESPACE;
121  $namespace[] = (string) $this->test_results->getActiveId();
122  $namespace[] = (string) $this->test_results->getAttempt();
123  return $namespace;
124  }
125 
126  private function getViewControlsParameter(): array
127  {
128  $request = $this->http->wrapper()->query();
130 
131  $mode = $request->has($pre . self::PARAM_MODE) ?
132  $request->retrieve($pre . self::PARAM_MODE, $this->refinery->kindlyTo()->string()) : self::MODE_OPT_ALL;
133 
134  $sortation = $request->has($pre . self::PARAM_SORT) ?
135  $request->retrieve($pre . self::PARAM_SORT, $this->refinery->kindlyTo()->string()) : self::SORT_OPT_ORDEROFAPPEARANCE;
136 
137  return [$mode, $sortation];
138  }
139 
143  private function getViewControls(
144  UIFactory $ui_factory,
145  Language $lng,
146  URLBuilder $target,
147  string $mode,
148  string $sortation
149  ): array {
150  $builder = $target->acquireParameter($this->getViewControlNamespace(), self::PARAM_MODE);
151  [$target, $token] = $builder;
152 
153  $modes = [
154  $lng->txt('resulttable_all') => $target->withParameter($token, self::MODE_OPT_ALL)->buildURI()->__toString(),
155  $lng->txt('resulttable_correct') => $target->withParameter($token, self::MODE_OPT_CORRECT)->buildURI()->__toString(),
156  $lng->txt('resulttable_incorrect') => $target->withParameter($token, self::MODE_OPT_INCORRECT)->buildURI()->__toString(),
157  ];
158  $check = [self::MODE_OPT_ALL, self::MODE_OPT_CORRECT, self::MODE_OPT_INCORRECT];
159  $active = array_search($mode, $check);
160 
161  $vc_mode = $ui_factory->viewControl()->mode($modes, $lng->txt('ta_resulttable_vc_mode_aria'))
162  ->withActive(array_keys($modes)[$active]);
163 
164  $options = [
165  self::SORT_OPT_ORDEROFAPPEARANCE => $lng->txt('resulttable_vc_sort_iooa'),
166  self::SORT_OPT_POSSIBLESCORE => $lng->txt('resulttable_vc_sort_posscore')
167  ];
168 
170  $vc_sort = $ui_factory->viewControl()->sortation($options, $sortation)->withTargetURL(
171  $target->buildURI()->__toString(),
172  $pre . self::PARAM_SORT
173  );
174 
175  return [
176  $vc_mode,
177  $vc_sort
178  ];
179  }
180 
181  private function getMapping(): \Closure
182  {
183  return function ($row, $question, $ui_factory, $environment) {
184  $env = $environment[self::ENV];
185  $lng = $environment[self::LNG];
186 
187  $title = sprintf(
188  '%s [ID: %s]',
189  $this->refinery->encode()->htmlSpecialCharsAsEntities()->transform(
190  $question->getTitle()
191  ),
192  (string) $question->getId()
193  );
194 
195  $important_fields = [
196  $lng->txt('question_id') => (string) $question->getId(),
197  $lng->txt('question_type') => $lng->txt($question->getType()),
198  $lng->txt('points') => sprintf(
199  '%s/%s (%s%%)',
200  (string) $question->getUserScore(),
201  (string) $question->getQuestionScore(),
202  (string) $question->getUserScorePercent()
203  )
204  ];
205 
206  $stats_fields = $important_fields;
207  $stats_fields[$lng->txt('tst_question_hints_requested_hint_count_header')] = (string) $question->getNumberOfRequestedHints();
208  $stats = $ui_factory->listing()->characteristicValue()->text($stats_fields);
209 
210 
211  $feedback = $ui_factory->listing()->descriptive([
212  $lng->txt('tst_feedback') => $question->getFeedback()
213  ]);
214 
215  $contents = [];
216 
217  $contents[] = $stats;
218  if ($env->getShowFeedback()) {
219  $contents[] = $feedback;
220  }
221 
222  if ($recap = $question->getContentForRecapitulation()) {
223  $contents[] = $ui_factory->listing()->descriptive([
224  $lng->txt('suggested_solution') => $recap
225  ]);
226  }
227 
228  $user_answer = $question->getUserAnswer();
229  $answer_contents = [
230  $ui_factory->listing()->descriptive([$lng->txt('tst_header_participant') => $user_answer])
231  ];
232  if ($env->getShowBestSolution()) {
233  $answer_contents[] = $ui_factory->listing()->descriptive([
234  $lng->txt('tst_header_solution') => $question->getBestSolution()
235  ]);
236  }
237 
238  $answers = $ui_factory->layout()->alignment()->horizontal()->evenlyDistributed(...$answer_contents);
239  $contents[] = $answers;
240 
241  $content = $ui_factory->layout()->alignment()->vertical(...$contents);
242 
243  switch ($question->getCorrect()) {
245  $icon_name = 'icon_ok.svg';
246  $label = $lng->txt("answer_is_right");
247  break;
249  $icon_name = 'icon_mostly_ok.svg';
250  $label = $lng->txt("answer_is_not_correct_but_positive");
251  break;
253  $icon_name = 'icon_not_ok.svg';
254  $label = $lng->txt("answer_is_wrong");
255  break;
256  }
257  $path = \ilUtil::getImagePath('standard/' . $icon_name);
258  $correct_icon = $ui_factory->symbol()->icon()->custom(
259  $path,
260  $label
261  );
262 
263  return $row
264  ->withHeadline($title)
265  ->withLeadingSymbol($correct_icon)
266  ->withImportantFields($important_fields)
267  ->withContent($content);
268  };
269  }
270 }
if($err=$client->getError()) $namespace
buildURI()
Get a URI representation of the full URL including query string and fragment/hash.
Definition: URLBuilder.php:212
__construct(UIFactory $ui_factory, private UIRenderer $ui_renderer, private Refinery $refinery, private HTTPService $http, DataFactory $data_factory, Language $lng, private AttemptResult $test_results, Settings $settings, string $title, bool $for_print)
const SEPARATOR
Separator for parts of a parameter&#39;s namespace.
Definition: URLBuilder.php:50
$http
Definition: deliver.php:30
$path
Definition: ltiservices.php:29
txt(string $a_topic, string $a_default_lang_fallback_mod="")
applyControls(string $mode, string $sortation, array $question_results)
static http()
Fetches the global http state from ILIAS.
$token
Definition: xapitoken.php:70
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
$results
getViewControls(UIFactory $ui_factory, Language $lng, URLBuilder $target, string $mode, string $sortation)
return array<>
withParameter(URLBuilderToken $token, string|array $value)
Change an acquired parameter&#39;s value if the supplied token is valid.
Definition: URLBuilder.php:166
global $lng
Definition: privfeed.php:31
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
$check
Definition: buildRTE.php:81
acquireParameter(array $namespace, string $name, ?string $initial_value=null)
Add a new parameter with a namespace and get its token for subsequent changes.
Definition: URLBuilder.php:119
URLBuilder.
Definition: URLBuilder.php:40