ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilLikeGUI.php
Go to the documentation of this file.
1 <?php
2 
20 
25 class ilLikeGUI
26 {
27  protected \ILIAS\Like\InternalGUIService $gui;
28  protected ilLikeData $data;
29  protected \ILIAS\DI\UIServices $ui;
32  protected ilLanguage $lng;
33  protected ilCtrl $ctrl;
34  protected ilObjUser $user;
35  protected int $obj_id;
36  protected string $obj_type;
37  protected int $sub_obj_id;
38  protected string $sub_obj_type;
39  protected int $news_id;
40  protected string $dom_id;
41 
42  public function __construct(
43  \ilLikeData $data,
44  ?\ilTemplate $main_tpl = null
45  ) {
46  global $DIC;
47 
48  $this->main_tpl = ($main_tpl == null)
49  ? $DIC->ui()->mainTemplate()
50  : $main_tpl;
51 
52  $this->gui = $DIC->like()->internal()->gui();
53 
54  $this->lng = $DIC->language();
55  $this->ctrl = $DIC->ctrl();
56  $this->user = $DIC->user();
57  $this->ui = $DIC->ui();
58 
59  $this->data = $data;
60 
61  $this->lng->loadLanguageModule("like");
62  $this->request = new StandardGUIRequest(
63  $DIC->http(),
64  $DIC->refinery()
65  );
66 
67  $this->initJavascript();
68  }
69 
70  protected function initJavascript(): void
71  {
72  $debug = false;
73  $this->gui->initFetch();
74  if ($debug) {
75  $this->main_tpl->addJavaScript("../components/ILIAS/Like/resources/Like.js");
76  } else {
77  $this->main_tpl->addJavaScript("assets/js/Like.js");
78  }
79  }
80 
81  public function setObject(
82  int $a_obj_id,
83  string $a_obj_type,
84  int $a_sub_obj_id = 0,
85  string $a_sub_obj_type = "",
86  int $a_news_id = 0
87  ): void {
88  $this->obj_id = $a_obj_id;
89  $this->obj_type = $a_obj_type;
90  $this->sub_obj_id = $a_sub_obj_id;
91  $this->sub_obj_type = $a_sub_obj_type;
92  $this->news_id = $a_news_id;
93  $this->dom_id = "like_" . $this->obj_id . "_" . $this->obj_type . "_" . $this->sub_obj_id . "_" .
94  $this->sub_obj_type . "_" . $this->news_id;
95  }
96 
97  public function executeCommand(): string
98  {
99  $ilCtrl = $this->ctrl;
100 
101  $next_class = $ilCtrl->getNextClass($this);
102  $cmd = $ilCtrl->getCmd("getHTML");
103 
104  switch ($next_class) {
105  default:
106  if (in_array($cmd, array("getHTML", "renderEmoticons", "renderModal", "saveExpression"))) {
107  return $this->$cmd();
108  }
109  break;
110  }
111  return "";
112  }
113 
114  public function getHTML(): string
115  {
116  $f = $this->ui->factory();
117  $r = $this->ui->renderer();
118  $ctrl = $this->ctrl;
119  $lng = $this->lng;
120 
121  $tpl = new ilTemplate("tpl.like.html", true, true, "components/ILIAS/Like");
122 
123  // modal
124  $modal_asyn_url = $ctrl->getLinkTarget($this, "renderModal", "", true, false);
125  $modal = $f->modal()->roundtrip('', $f->legacy()->content(""))
126  ->withAsyncRenderUrl($modal_asyn_url);
127 
128  $modal_show_sig_id = $modal->getShowSignal()->getId();
129  $this->ctrl->setParameter($this, "modal_show_sig_id", $modal_show_sig_id);
130  $emo_counters = $this->renderEmoCounters($modal->getShowSignal());
131  $tpl->setVariable("EMO_COUNTERS", $emo_counters . $r->render($modal));
132 
133 
134 
135  // emoticon popover
136  $popover = $f->popover()->standard($f->legacy()->content(''))->withTitle('');
137  $ctrl->setParameter($this, "repl_sig", $popover->getReplaceContentSignal()->getId());
138  $asyn_url = $ctrl->getLinkTarget($this, "renderEmoticons", "", true, false);
139  $popover = $popover->withAsyncContentUrl($asyn_url);
140  $button = $f->button()->shy($lng->txt("like"), '#')
141  ->withOnClick($popover->getShowSignal());
142 
143  $tpl->setVariable("LIKE", $r->render([$popover, $button]));
144 
145  return $tpl->get();
146  }
147 
152  protected function renderEmoCounters(
153  ?ILIAS\UI\Component\Signal $modal_signal = null,
154  bool $unavailable = false
155  ): string {
156  $ilCtrl = $this->ctrl;
157 
158  $tpl = new ilTemplate("tpl.emo_counters.html", true, true, "components/ILIAS/Like");
159  $f = $this->ui->factory();
160  $r = $this->ui->renderer();
161 
162  $cnts = $this->data->getExpressionCounts(
163  $this->obj_id,
164  $this->obj_type,
165  $this->sub_obj_id,
166  $this->sub_obj_type,
167  $this->news_id
168  );
169  $comps = array();
170  foreach ($this->data->getExpressionTypes() as $k => $txt) {
171  if ($cnts[$k] > 0) {
172  $glyph = $this->getGlyphForConst($k, $unavailable);
173  if ($modal_signal !== null) {
174  $glyph = $glyph->withOnClick($modal_signal);
175  }
176  $comps[] = $glyph->withCounter($f->counter()->status($cnts[$k]));
177  }
178  }
179 
180  if ($ilCtrl->isAsynch()) {
181  $tpl->setVariable("MODAL_TRIGGER", $r->renderAsync($comps));
182  } else {
183  $tpl->setVariable("MODAL_TRIGGER", $r->render($comps));
184  }
185  if ($modal_signal !== null) {
186  $tpl->setVariable("ID", $this->dom_id);
187  }
188 
189  if (count($comps) > 0 && $modal_signal !== null) {
190  $tpl->setVariable("SEP", $r->render($f->divider()->vertical()));
191  }
192 
193  return $tpl->get();
194  }
195 
196  protected function getGlyphForConst(
197  int $a_const,
198  bool $unavailable = false
199  ): ?\ILIAS\UI\Component\Symbol\Glyph\Glyph {
200  $f = $this->ui->factory();
201  $like = null;
202  switch ($a_const) {
203  case ilLikeData::TYPE_LIKE: $like = $f->symbol()->glyph()->like();
204  break;
205  case ilLikeData::TYPE_DISLIKE: $like = $f->symbol()->glyph()->dislike();
206  break;
207  case ilLikeData::TYPE_LOVE: $like = $f->symbol()->glyph()->love();
208  break;
209  case ilLikeData::TYPE_LAUGH: $like = $f->symbol()->glyph()->laugh();
210  break;
211  case ilLikeData::TYPE_ASTOUNDED: $like = $f->symbol()->glyph()->astounded();
212  break;
213  case ilLikeData::TYPE_SAD: $like = $f->symbol()->glyph()->sad();
214  break;
215  case ilLikeData::TYPE_ANGRY: $like = $f->symbol()->glyph()->angry();
216  break;
217  }
218  if ($unavailable) {
219  $like = $like->withUnavailableAction();
220  }
221  return $like;
222  }
223 
227  public function renderEmoticons(): void
228  {
229  $ilCtrl = $this->ctrl;
230  $r = $this->ui->renderer();
231  $glyphs = [];
232 
233  $ilCtrl->saveParameter($this, "modal_show_sig_id");
234 
235  $tpl = new ilTemplate("tpl.emoticons.html", true, true, "components/ILIAS/Like");
236  $tpl->setVariable("ID", $this->dom_id);
237 
238  $url = $ilCtrl->getLinkTarget($this, "", "", true);
239  foreach ($this->data->getExpressionTypes() as $k => $txt) {
240  $g = $this->getGlyphForConst($k);
241 
242  if ($this->data->isExpressionSet(
243  $this->user->getId(),
244  $k,
250  )) {
251  $g = $g->withHighlight();
252  }
253 
254  $g = $g->withAdditionalOnLoadCode(function ($id) use ($k, $url) {
255  return
256  "$('#" . $id . "').click(function() { il.Like.toggle('" . $url . "','" . $id . "','" . $this->dom_id . "'," . $k . ");});";
257  });
258  $glyphs[] = $g;
259  }
260 
261  $tpl->setVariable("GLYPHS", $r->renderAsync($glyphs));
262 
263  echo $tpl->get();
264  exit;
265  }
266 
271  protected function saveExpression(): void
272  {
273  $exp_key = $this->request->getExpressionKey();
274  $exp_val = $this->request->getValue();
275  $modal_show_sig_id = $this->request->getModalSignalId();
276  $show_signal = new \ILIAS\UI\Implementation\Component\Signal($modal_show_sig_id);
277 
278  if ($exp_val) {
279  $this->data->addExpression(
280  $this->user->getId(),
281  $exp_key,
287  );
288  } else {
289  $this->data->removeExpression(
290  $this->user->getId(),
291  $exp_key,
297  );
298  }
299  echo $this->renderEmoCounters($show_signal);
300  exit;
301  }
302 
303 
310  public function renderModal(): void
311  {
312  $user = $this->user;
313 
314  $f = $this->ui->factory();
315  $r = $this->ui->renderer();
316 
317 
318  $list_items = [];
319 
320  $glyph_renderings = [];
321  foreach ($this->data->getExpressionEntries(
322  $this->obj_id,
323  $this->obj_type,
324  $this->sub_obj_id,
325  $this->sub_obj_type,
326  $this->news_id
327  ) as $exp) {
328  $name = ilUserUtil::getNamePresentation($exp["user_id"]);
329 
330  $image = $f->image()->responsive(
331  ilObjUser::_getPersonalPicturePath($exp["user_id"]),
332  $name
333  );
334 
335  $g = $this->getGlyphForConst($exp["expression"], true);
336  $placeholder = "###" . $exp["expression"] . "###";
337  $glyph_renderings[$placeholder] = $r->render($g);
338 
339  $list_items[] = $f->item()->standard($name)
340  ->withDescription($placeholder . " " .
342  ->withLeadImage($image);
343  }
344 
345  $std_list = $f->panel()->listing()->standard("", array(
346  $f->item()->group("", $list_items)
347  ));
348 
349  $header = $f->legacy()->content($this->renderEmoCounters(null, true));
350  //$header = $f->legacy("---");
351 
352  $modal = $f->modal()->roundtrip('', [$header, $std_list]);
353  $html = $r->render($modal);
354  foreach ($glyph_renderings as $pl => $gl) {
355  $html = str_replace($pl, $gl, $html);
356  }
357  echo $html;
358  exit;
359  }
360 
364  public static function getExpressionText(
365  int $a_const
366  ): string {
367  global $DIC;
368 
369  $lng = $DIC->language();
370 
371  switch ($a_const) {
372  case ilLikeData::TYPE_LIKE: return $lng->txt("like");
373  case ilLikeData::TYPE_DISLIKE: return $lng->txt("dislike");
374  case ilLikeData::TYPE_LOVE: return $lng->txt("love");
375  case ilLikeData::TYPE_LAUGH: return $lng->txt("laugh");
376  case ilLikeData::TYPE_ASTOUNDED: return $lng->txt("astounded");
377  case ilLikeData::TYPE_SAD: return $lng->txt("sad");
378  case ilLikeData::TYPE_ANGRY: return $lng->txt("angry");
379  }
380  return "";
381  }
382 }
ILIAS DI UIServices $ui
__construct(\ilLikeData $data, ?\ilTemplate $main_tpl=null)
const IL_CAL_DATETIME
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
string $dom_id
Interface Observer Contains several chained tasks and infos about them.
getLinkTarget(object $a_gui_obj, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
static getExpressionText(int $a_const)
Get expression text for const.
renderModal()
Render modal (asynch)
$url
Definition: shib_logout.php:66
renderEmoticons()
Render emoticons (asynch)
StandardGUIRequest $request
ilLikeData $data
const TYPE_ASTOUNDED
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
getGlyphForConst(int $a_const, bool $unavailable=false)
getNextClass($a_gui_class=null)
ILIAS Like InternalGUIService $gui
static getNamePresentation( $a_user_id, bool $a_user_image=false, bool $a_profile_link=false, string $a_profile_back_link='', bool $a_force_first_lastname=false, bool $a_omit_login=false, bool $a_sortable=true, bool $a_return_data_array=false, $a_ctrl_path='ilpublicuserprofilegui')
Default behaviour is:
global $DIC
Definition: shib_login.php:22
renderEmoCounters(?ILIAS\UI\Component\Signal $modal_signal=null, bool $unavailable=false)
Render emo counters.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$txt
Definition: error.php:31
static _getPersonalPicturePath(int $a_usr_id, string $a_size='small', bool $a_force_pic=false, bool $a_prevent_no_photo_image=false, bool $html_export=false)
ilObjUser $user
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
string $sub_obj_type
setParameter(object $a_gui_obj, string $a_parameter, $a_value)
string $obj_type
ilGlobalTemplateInterface $main_tpl
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
User interface for like feature.
ilLanguage $lng
setObject(int $a_obj_id, string $a_obj_type, int $a_sub_obj_id=0, string $a_sub_obj_type="", int $a_news_id=0)
saveExpression()
Save expression (asynch)
$r