ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
TranslationWorkflowForm.php
Go to the documentation of this file.
1 <?php
2 
20 
26 use ILIAS\Data\URI;
31 
33 {
37  private const STEP = 'step';
41  private const STEP_SELECTED_LNGS = 'selectedLngs';
45  private const STEP_SAVE_TRANSLATIONS = 'saveTranslations';
46  private readonly Factory $ui_factory;
47  private readonly \ilLanguage $lng;
48  private readonly ServerRequestInterface $request;
49 
50  private bool $all_languages = false;
51  private readonly Translations $translations;
52  private readonly \ILIAS\UI\Component\Input\Field\Factory $fields;
53  private readonly \ILIAS\Refinery\Factory $refinery;
54  private readonly \ILIAS\UI\Component\Prompt\State\Factory $states;
55 
56  public function __construct(
57  private readonly ServicesInterface $lom_services,
58  private readonly UIServices $ui,
59  private readonly TranslationsRepository $repository,
60  private readonly TranslatableItem $item
61  ) {
62  global $DIC;
63  $this->request = $DIC->http()->request();
64  $this->refinery = $DIC->refinery();
65  $this->ui_factory = $ui->factory();
66  $this->lng = $DIC->language();
67  $this->translations = $repository->get($item);
68  $this->fields = $this->ui_factory->input()->field();
69  $this->states = $this->ui_factory->prompt()->state();
70  }
71 
72  public function asTranslationWorkflow(
73  URI $here_uri,
74  URI $success_target
75  ): State {
76  $step = $this->request->getQueryParams()[self::STEP] ?? null;
77 
78  $language_slection = $this->getLanguageSelectionForm(
79  $here_uri->withParameter(self::STEP, self::STEP_SELECTED_LNGS)
80  );
81 
82  switch ($step) {
83  default:
84  return $this->states->show($language_slection);
85  case self::STEP_SELECTED_LNGS:
86  // store
87  $data = $language_slection->withRequest($this->request)->getData();
88  return $this->states
89  ->show(
90  $this->getTranslationForm(
91  $here_uri->withParameter(self::STEP, self::STEP_SAVE_TRANSLATIONS),
92  $data
93  )
94  );
95  case self::STEP_SAVE_TRANSLATIONS:
96  $active_language_keys = [];
97  foreach ($this->translations->getLanguageKeys() as $language_key) {
98  $active_language_keys[$language_key] = true;
99  }
100 
101  $tranlation_form = $this
102  ->getTranslationForm(
103  $here_uri->withParameter(self::STEP, self::STEP_SAVE_TRANSLATIONS),
104  $active_language_keys
105  )
106  ->withRequest($this->request);
107 
108  $data = $tranlation_form->getData();
109  if ($data !== null) {
110  return $this->states
111  ->redirect($success_target->withParameter(self::STEP, ''));
112  }
113  return $this->states->show($tranlation_form);
114  }
115  }
116 
117  public function getTranslationForm(URI $form_target, array $language_keys): Standard
118  {
119  $inputs = $this->getTranslationInputs($language_keys);
120  return $this->ui_factory->input()->container()->form()->standard(
121  (string) $form_target,
122  $inputs
123  )->withAdditionalTransformation(
124  $this->refinery->custom()->transformation(function ($value) {
125  $this->repository->store($this->translations);
126  return $value;
127  })
128  );
129  }
130 
131  protected function getTranslationInputs(array $language_keys, bool $required = true): array
132  {
133  $default_value = match (true) {
134  ($this->item instanceof GroupDTO) => $this->item->getTitle(),
135  ($this->item instanceof EntryDTO) => $this->item->getTitle(),
136  default => ''
137  };
138 
139  $languages = [];
140  foreach ($this->lom_services->dataHelper()->getAllLanguages() as $language) {
141  $languages[$language->value()] = $language->presentableLabel();
142  }
143 
144  $inputs = [];
145  foreach ($language_keys as $language_key => $active) {
146  if (!$active) {
147  continue;
148  }
149  $translation = $this->translations->getLanguageCode($language_key)?->getTranslation();
150  $language_title = $languages[$language_key] ?? null;
151  if ($language_title === null) {
152  continue;
153  }
154  $inputs[$language_key] = $this->fields
155  ->text($language_title)
156  ->withRequired($required)
157  ->withValue(
158  $translation ?? $default_value
159  )
160  ->withAdditionalTransformation(
161  $this->refinery->custom()->transformation(function ($value) use ($language_key) {
162  $this->translations->add(
163  $this->repository->blank($this->item, $language_key, $value)
164  );
165  return $value;
166  })
167  );
168  }
169  return $inputs;
170  }
171 
172  public function getLanguageSelectionForm(URI $form_target): Standard
173  {
175 
176  return $this->ui_factory->input()->container()->form()->standard(
177  (string) $form_target,
178  $inputs
179  )->withAdditionalTransformation(
180  $this->refinery->custom()->transformation(function ($value) {
181  $this->repository->store($this->translations);
182  return $value;
183  })
184  );
185  }
186 
187  private function getLanguageSelectionInputs(): array
188  {
189  $inputs = [];
190  $all_languages = $this->lom_services->dataHelper()->getAllLanguages();
191  $installed_languages = $this->lng->getInstalledLanguages();
192 
193  foreach ($all_languages as $language) {
194  $language_code = $language->value();
195  if (!$this->all_languages && !in_array($language_code, $installed_languages, true)) {
196  continue;
197  }
198  $inputs[$language_code] = $this->fields
199  ->checkbox($language->presentableLabel())
200  ->withValue(
201  $this->translations->getLanguageCode($language_code) !== null
203  $this->refinery->custom()->transformation(function ($value) use ($language_code) {
204  if (!$value) {
205  $this->translations->remove($language_code);
206  } else {
207  $this->translations->add(
208  $this->repository->blank(
209  $this->item,
210  $language_code,
211  $this->translations->getLanguageCode($language_code)?->getTranslation() ?? ''
212  )
213  );
214  }
215  return $value;
216  })
217  );
218  }
219  return $inputs;
220  }
221 
222  // ALTERNATIVE
223 
224  public function asTranslationModal(URI $form_target): RoundTrip
225  {
226  $languages = [];
227  foreach ($this->lng->getInstalledLanguages() as $installed_language) {
228  $languages[$installed_language] = true;
229  }
230 
231  return $this->ui_factory->modal()->roundtrip(
232  $this->lng->txt('translations'),
233  null,
234  $this->getTranslationInputs($languages, false),
235  $form_target
237  $this->refinery->custom()->transformation(function ($value) {
238  $this->repository->store($this->translations);
239  return $value;
240  })
241  );
242  }
243 
244 }
repository()
description: > Example for rendering a repository card
Definition: repository.php:33
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(private readonly ServicesInterface $lom_services, private readonly UIServices $ui, private readonly TranslationsRepository $repository, private readonly TranslatableItem $item)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Provides fluid interface to RBAC services.
Definition: UIServices.php:24
This is how the factory for UI elements looks.
Definition: Factory.php:37
global $DIC
Definition: shib_login.php:22
withValue($value)
Get an input like this with another value displayed on the client side.
Definition: Group.php:61
This describes a standard form.
Definition: Standard.php:28
readonly ILIAS UI Component Prompt State Factory $states
withParameter(string $key, $value)
Get URI with modified parameters.
Definition: URI.php:384