ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ModalAdapterGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
26 
28 {
29  protected HTTPUtil $http_util;
30  protected string $cancel_label;
31  protected ?\ILIAS\Repository\Form\FormAdapterGUI $form = null;
32  protected \ILIAS\Refinery\Factory $refinery;
33  protected string $title = "";
34  protected \ILIAS\HTTP\Services $http;
35  protected \ilCtrlInterface $ctrl;
36  protected \ILIAS\DI\UIServices $ui;
37  protected ?array $ui_content = null;
38  protected array $action_buttons = [];
39 
43  public function __construct(
44  string $title,
45  string $cancel_label,
46  HTTPUtil $http_util
47  ) {
48  global $DIC;
49  $this->ui = $DIC->ui();
50  $this->ctrl = $DIC->ctrl();
51  $this->http = $DIC->http();
52  $this->refinery = $DIC->refinery();
53  $this->title = $title;
54  $this->cancel_label = $cancel_label;
55  $this->http_util = $http_util;
56  }
57 
61  protected function _send(string $output): void
62  {
63  $this->http_util->sendString($output);
64  }
65 
66  public function getTitle(): string
67  {
68  return $this->title;
69  }
70 
71  public function legacy(string $content): self
72  {
73  $this->ui_content = [$this->ui->factory()->legacy()->content($content)];
74  $this->form = null;
75  return $this;
76  }
77 
78  public function content(array $components): self
79  {
80  $this->ui_content = $components;
81  $this->form = null;
82  return $this;
83  }
84 
85  public function button(string $text, string $url, bool $replace_modal = true, $onclick = ""): self
86  {
87  $target = $replace_modal
88  ? "#"
89  : $url;
90 
91  $button = $this->ui->factory()->button()->standard(
92  $text,
93  $target
94  );
95 
96  if ($replace_modal) {
97  $button = $button->withOnLoadCode(function ($id) use ($url, $onclick) {
98  return
99  "$('#$id').click(function(event) { $onclick; il.repository.ui.redirect('$url'); return false;});";
100  });
101  } elseif ($onclick !== "") {
102  $button = $button->withOnLoadCode(function ($id) use ($url, $onclick) {
103  return "$('#$id').click(function(event) { $onclick });";
104  });
105  }
106  $this->action_buttons[] = $button;
107  return $this;
108  }
109 
110  public function form(
112  string $on_form_submit_click = ""
113  ): self {
114  if ($this->ctrl->isAsynch()) {
115  $this->form = $form->asyncModal();
116  } else {
117  $this->form = $form->syncModal();
118  }
119 
120  $async = $this->form->isSentAsync()
121  ? "true"
122  : "false";
123  if ($on_form_submit_click === "") {
124  $on_form_submit_click = "il.repository.ui.submitModalForm(event,$async); return false;";
125  }
126  $button = $this->ui->factory()->button()->standard(
127  $this->form->getSubmitLabel(),
128  "#"
129  )->withOnLoadCode(function ($id) use ($on_form_submit_click) {
130  return
131  "$('#$id').click(function(event) {" . $on_form_submit_click . "});";
132  });
133  $this->action_buttons[] = $button;
134  $this->ui_content = null;
135  return $this;
136  }
137 
138  protected function getModalWithContent(): Modal\RoundTrip
139  {
140  $modal = [];
141  if (!is_null($this->form)) {
142  $this->ui_content = [$this->ui->factory()->legacy()->content($this->form->render())];
143  }
144  $modal = $this->ui->factory()->modal()->roundtrip($this->getTitle(), $this->ui_content);
145  if (count($this->action_buttons) > 0) {
146  $modal = $modal->withActionButtons($this->action_buttons);
147  }
148  if ($this->cancel_label !== "") {
149  $modal = $modal->withCancelButtonLabel($this->cancel_label);
150  }
151  return $modal;
152  }
153 
157  public function send(): void
158  {
159  $modal = $this->getModalWithContent();
160  $this->_send($this->ui->renderer()->renderAsync($modal));
161  }
162 
163  public function renderAsyncTriggerButton(string $button_title, string $url, $shy = true): string
164  {
165  $ui = $this->ui;
167  $button_title,
168  $url,
169  $shy
170  );
171  return $ui->renderer()->render($components);
172  }
173 
174  public function getAsyncTriggerButtonComponents(string $button_title, string $url, $shy = true): array
175  {
176  $ui = $this->ui;
177  $modal = $ui->factory()->modal()->roundtrip("", $ui->factory()->legacy()->content(""));
178  $url .= '&replaceSignal=' . $modal->getReplaceSignal()->getId();
179  $modal = $modal->withAsyncRenderUrl($url);
180  if ($shy) {
181  $button = $ui->factory()->button()->shy($button_title, "#")
182  ->withOnClick($modal->getShowSignal());
183  } else {
184  $button = $ui->factory()->button()->standard($button_title, "#")
185  ->withOnClick($modal->getShowSignal());
186  }
187  return ["button" => $button, "modal" => $modal, "signal" => $modal->getShowSignal()->getId()];
188  }
189 
190  public function getTriggerButtonComponents(string $button_title, $shy = true): array
191  {
192  $ui = $this->ui;
193 
194  $modal = $this->getModalWithContent();
195  if ($shy) {
196  $button = $ui->factory()->button()->shy($button_title, "#")
197  ->withOnClick($modal->getShowSignal());
198  } else {
199  $button = $ui->factory()->button()->standard($button_title, "#")
200  ->withOnClick($modal->getShowSignal());
201  }
202  return ["button" => $button, "modal" => $modal, "signal" => $modal->getShowSignal()->getId()];
203  }
204 }
This describes commonalities between the different modals.
Definition: Modal.php:34
Interface Observer Contains several chained tasks and infos about them.
form(\ILIAS\Repository\Form\FormAdapterGUI $form, string $on_form_submit_click="")
$url
Definition: shib_logout.php:66
renderAsyncTriggerButton(string $button_title, string $url, $shy=true)
getAsyncTriggerButtonComponents(string $button_title, string $url, $shy=true)
$components
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
global $DIC
Definition: shib_login.php:22
ILIAS Repository Form FormAdapterGUI $form
__construct(string $title, string $cancel_label, HTTPUtil $http_util)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Factory.php:21
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
button(string $text, string $url, bool $replace_modal=true, $onclick="")
getTriggerButtonComponents(string $button_title, $shy=true)