ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
StringFactory.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
33 
35 {
37  protected Refinery $refinery;
38 
39  public function __construct(
43  ElementHelperInterface $element_vocab_helper,
44  Refinery $refinery,
45  ) {
46  parent::__construct($ui_factory, $presenter, $constraint_dictionary);
47  $this->element_vocab_helper = $element_vocab_helper;
48  $this->refinery = $refinery;
49  }
50 
51  protected function rawInput(
52  ElementInterface $element,
53  ElementInterface $context_element,
54  SlotIdentifier $conditional_slot = SlotIdentifier::NULL
55  ): FormInput {
56  $slot = $this->element_vocab_helper->slotForElement($element);
57 
58  $data = null;
59  if ($element->getData()->type() !== Type::NULL) {
60  $data = $element->getData()->value();
61  }
62  $data = $this->getPresetValueFromConstraints($this->constraint_dictionary, $element) ?? $data;
63 
64  $raw_values = [];
65  $allows_custom_input = true;
66  foreach ($this->element_vocab_helper->vocabulariesForSlot($slot) as $vocab) {
67  $values_from_vocab = iterator_to_array($vocab->values());
68  $raw_values = array_merge($raw_values, $values_from_vocab);
69 
70  if (!$vocab->allowsCustomInputs()) {
71  $allows_custom_input = false;
72  }
73  }
74 
75  // return finished text input if there are no vocabs
76  if (empty($raw_values)) {
77  return $this->buildTextInput(
78  $this->getInputLabelFromElement($this->presenter, $element, $context_element),
79  $element,
80  true
81  );
82  }
83 
84  // return finished select input if no custom input is allowed
85  if (!$allows_custom_input) {
86  if (isset($data) && !in_array($data, $raw_values)) {
87  array_unshift($raw_values, $data);
88  }
89  return $this->buildSelectInput(
90  $this->getInputLabelFromElement($this->presenter, $element, $context_element),
91  $slot,
92  $element,
93  true,
94  ...$raw_values
95  );
96  }
97 
98  // else, switchable group to choose between the two
99  $value_label = $this->presenter->utilities()->txt('md_editor_value');
100  $select_input = $this->buildSelectInput($value_label, $slot, $element, false, ...$raw_values);
101  $text_input = $this->buildTextInput($value_label, $element, false);
102 
103  if (isset($data)) {
104  if (!in_array($data, $raw_values)) {
105  $text_input = $text_input->withValue($data);
106  $radio_value = 'custom';
107  } else {
108  $select_input = $select_input->withValue($data);
109  $radio_value = 'from_vocab';
110  }
111  }
112 
113  $input = $this->ui_factory->switchableGroup(
114  [
115  'from_vocab' => $this->ui_factory->group(
116  ['value' => $select_input],
117  $this->presenter->utilities()->txt('md_editor_from_vocab_input')
118  ),
119  'custom' => $this->ui_factory->group(
120  ['value' => $text_input],
121  $this->presenter->utilities()->txt('md_editor_custom_input')
122  )
123  ],
124  $this->getInputLabelFromElement($this->presenter, $element, $context_element)
125  );
126  if (isset($radio_value)) {
127  $input = $input->withValue($radio_value);
128  }
129  return $this->addConstraintsFromElement($this->constraint_dictionary, $element, $input, true)
130  ->withAdditionalTransformation(
131  $this->refinery->custom()->transformation(function ($vs) {
132  return $vs[1]['value'] ?? null;
133  })
134  );
135  }
136 
137  protected function buildTextInput(
138  string $label,
139  ElementInterface $element,
140  bool $with_value
141  ): FormInput {
142  $super_name = $element->getSuperElement()
143  ->getDefinition()
144  ->name();
145  if ($super_name === 'description') {
146  $input = $this->ui_factory->textarea($label);
147  } else {
148  $input = $this->ui_factory->text($label);
149  }
150 
151  if ($with_value) {
152  $input = $this->addValueFromElement($element, $input);
153  }
154  return $this->addConstraintsFromElement($this->constraint_dictionary, $element, $input, !$with_value);
155  }
156 
160  protected function buildSelectInput(
161  string $label,
162  SlotIdentifier $slot,
163  ElementInterface $element,
164  bool $with_value,
165  string ...$raw_values
166  ): FormInput {
167  $values = [];
168  foreach ($this->presenter->data()->vocabularyValues($slot, ...$raw_values) as $labelled_value) {
169  $values[$labelled_value->value()] = $labelled_value->label();
170  }
171  $input = $this->ui_factory->select($label, $values);
172 
173  if ($with_value) {
174  $input = $this->addValueFromElement($element, $input);
175  }
176  return $this->addConstraintsFromElement($this->constraint_dictionary, $element, $input, !$with_value);
177  }
178 
179  public function getInput(
180  ElementInterface $element,
181  ElementInterface $context_element
182  ): FormInput {
183  return $this->rawInput($element, $context_element);
184  }
185 
186  public function getInputInCondition(
187  ElementInterface $element,
188  ElementInterface $context_element,
189  SlotIdentifier $conditional_slot
190  ): FormInput {
191  return $this->rawInput($element, $context_element);
192  }
193 }
buildTextInput(string $label, ElementInterface $element, bool $with_value)
rawInput(ElementInterface $element, ElementInterface $context_element, SlotIdentifier $conditional_slot=SlotIdentifier::NULL)
getInputInCondition(ElementInterface $element, ElementInterface $context_element, SlotIdentifier $conditional_slot)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getInput(ElementInterface $element, ElementInterface $context_element)
$vocab
buildSelectInput(string $label, SlotIdentifier $slot, ElementInterface $element, bool $with_value, string ... $raw_values)
__construct(Container $dic, ilPlugin $plugin)
This describes inputs that can be used in forms.
Definition: FormInput.php:32
__construct(UIFactory $ui_factory, PresenterInterface $presenter, ConstraintDictionary $constraint_dictionary, ElementHelperInterface $element_vocab_helper, Refinery $refinery,)