ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
class.ilLikeGUI.php
Go to the documentation of this file.
1 <?php
2 
20 
25 class ilLikeGUI
26 {
27  protected ilLikeData $data;
28  protected \ILIAS\DI\UIServices $ui;
31  protected ilLanguage $lng;
32  protected ilCtrl $ctrl;
33  protected ilObjUser $user;
34  protected int $obj_id;
35  protected string $obj_type;
36  protected int $sub_obj_id;
37  protected string $sub_obj_type;
38  protected int $news_id;
39  protected string $dom_id;
40 
41  public function __construct(
42  \ilLikeData $data,
43  ?\ilTemplate $main_tpl = null
44  ) {
45  global $DIC;
46 
47  $this->main_tpl = ($main_tpl == null)
48  ? $DIC->ui()->mainTemplate()
49  : $main_tpl;
50 
51  $this->lng = $DIC->language();
52  $this->ctrl = $DIC->ctrl();
53  $this->user = $DIC->user();
54  $this->ui = $DIC->ui();
55 
56  $this->data = $data;
57 
58  $this->lng->loadLanguageModule("like");
59  $this->request = new StandardGUIRequest(
60  $DIC->http(),
61  $DIC->refinery()
62  );
63 
64  $this->initJavascript();
65  }
66 
67  protected function initJavascript(): void
68  {
70  $this->main_tpl->addJavaScript("./Services/Like/js/Like.js");
71  }
72 
73  public function setObject(
74  int $a_obj_id,
75  string $a_obj_type,
76  int $a_sub_obj_id = 0,
77  string $a_sub_obj_type = "",
78  int $a_news_id = 0
79  ): void {
80  $this->obj_id = $a_obj_id;
81  $this->obj_type = $a_obj_type;
82  $this->sub_obj_id = $a_sub_obj_id;
83  $this->sub_obj_type = $a_sub_obj_type;
84  $this->news_id = $a_news_id;
85  $this->dom_id = "like_" . $this->obj_id . "_" . $this->obj_type . "_" . $this->sub_obj_id . "_" .
86  $this->sub_obj_type . "_" . $this->news_id;
87  }
88 
89  public function executeCommand(): string
90  {
91  $ilCtrl = $this->ctrl;
92 
93  $next_class = $ilCtrl->getNextClass($this);
94  $cmd = $ilCtrl->getCmd("getHTML");
95 
96  switch ($next_class) {
97  default:
98  if (in_array($cmd, array("getHTML", "renderEmoticons", "renderModal", "saveExpression"))) {
99  return $this->$cmd();
100  }
101  break;
102  }
103  return "";
104  }
105 
106  public function getHTML(): string
107  {
108  $f = $this->ui->factory();
109  $r = $this->ui->renderer();
110  $ctrl = $this->ctrl;
111  $lng = $this->lng;
112 
113  $tpl = new ilTemplate("tpl.like.html", true, true, "Services/Like");
114 
115  // modal
116  $modal_asyn_url = $ctrl->getLinkTarget($this, "renderModal", "", true, false);
117  $modal = $f->modal()->roundtrip('', $f->legacy(""))
118  ->withAsyncRenderUrl($modal_asyn_url);
119 
120  $modal_show_sig_id = $modal->getShowSignal()->getId();
121  $this->ctrl->setParameter($this, "modal_show_sig_id", $modal_show_sig_id);
122  $emo_counters = $this->renderEmoCounters($modal->getShowSignal());
123  $tpl->setVariable("EMO_COUNTERS", $emo_counters . $r->render($modal));
124 
125 
126 
127  // emoticon popover
128  $popover = $f->popover()->standard($f->legacy(''))->withTitle('');
129  $ctrl->setParameter($this, "repl_sig", $popover->getReplaceContentSignal()->getId());
130  $asyn_url = $ctrl->getLinkTarget($this, "renderEmoticons", "", true, false);
131  $popover = $popover->withAsyncContentUrl($asyn_url);
132  $button = $f->button()->shy($lng->txt("like"), '#')
133  ->withOnClick($popover->getShowSignal());
134 
135  $tpl->setVariable("LIKE", $r->render([$popover, $button]));
136 
137  return $tpl->get();
138  }
139 
144  protected function renderEmoCounters(
145  ILIAS\UI\Component\Signal $modal_signal = null,
146  bool $unavailable = false
147  ): string {
148  $ilCtrl = $this->ctrl;
149 
150  $tpl = new ilTemplate("tpl.emo_counters.html", true, true, "Services/Like");
151  $f = $this->ui->factory();
152  $r = $this->ui->renderer();
153 
154  $cnts = $this->data->getExpressionCounts(
155  $this->obj_id,
156  $this->obj_type,
157  $this->sub_obj_id,
158  $this->sub_obj_type,
159  $this->news_id
160  );
161  $comps = array();
162  foreach ($this->data->getExpressionTypes() as $k => $txt) {
163  if ($cnts[$k] > 0) {
164  $glyph = $this->getGlyphForConst($k, $unavailable);
165  if ($modal_signal !== null) {
166  $glyph = $glyph->withOnClick($modal_signal);
167  }
168  $comps[] = $glyph->withCounter($f->counter()->status($cnts[$k]));
169  }
170  }
171 
172  if ($ilCtrl->isAsynch()) {
173  $tpl->setVariable("MODAL_TRIGGER", $r->renderAsync($comps));
174  } else {
175  $tpl->setVariable("MODAL_TRIGGER", $r->render($comps));
176  }
177  if ($modal_signal !== null) {
178  $tpl->setVariable("ID", $this->dom_id);
179  }
180 
181  if (count($comps) > 0 && $modal_signal !== null) {
182  $tpl->setVariable("SEP", $r->render($f->divider()->vertical()));
183  }
184 
185  return $tpl->get();
186  }
187 
188  protected function getGlyphForConst(
189  int $a_const,
190  bool $unavailable = false
191  ): ?\ILIAS\UI\Component\Symbol\Glyph\Glyph {
192  $f = $this->ui->factory();
193  $like = null;
194  switch ($a_const) {
195  case ilLikeData::TYPE_LIKE: $like = $f->symbol()->glyph()->like();
196  break;
197  case ilLikeData::TYPE_DISLIKE: $like = $f->symbol()->glyph()->dislike();
198  break;
199  case ilLikeData::TYPE_LOVE: $like = $f->symbol()->glyph()->love();
200  break;
201  case ilLikeData::TYPE_LAUGH: $like = $f->symbol()->glyph()->laugh();
202  break;
203  case ilLikeData::TYPE_ASTOUNDED: $like = $f->symbol()->glyph()->astounded();
204  break;
205  case ilLikeData::TYPE_SAD: $like = $f->symbol()->glyph()->sad();
206  break;
207  case ilLikeData::TYPE_ANGRY: $like = $f->symbol()->glyph()->angry();
208  break;
209  }
210  if ($unavailable) {
211  $like = $like->withUnavailableAction();
212  }
213  return $like;
214  }
215 
219  public function renderEmoticons(): void
220  {
221  $ilCtrl = $this->ctrl;
222  $r = $this->ui->renderer();
223  $glyphs = [];
224 
225  $ilCtrl->saveParameter($this, "modal_show_sig_id");
226 
227  $tpl = new ilTemplate("tpl.emoticons.html", true, true, "Services/Like");
228  $tpl->setVariable("ID", $this->dom_id);
229 
230  $url = $ilCtrl->getLinkTarget($this, "", "", true);
231  foreach ($this->data->getExpressionTypes() as $k => $txt) {
232  $g = $this->getGlyphForConst($k);
233 
234  if ($this->data->isExpressionSet(
235  $this->user->getId(),
236  $k,
242  )) {
243  $g = $g->withHighlight();
244  }
245 
246  $g = $g->withAdditionalOnLoadCode(function ($id) use ($k, $url) {
247  return
248  "$('#" . $id . "').click(function() { il.Like.toggle('" . $url . "','" . $id . "','" . $this->dom_id . "'," . $k . ");});";
249  });
250  $glyphs[] = $g;
251  }
252 
253  $tpl->setVariable("GLYPHS", $r->renderAsync($glyphs));
254 
255  echo $tpl->get();
256  exit;
257  }
258 
263  protected function saveExpression(): void
264  {
265  $exp_key = $this->request->getExpressionKey();
266  $exp_val = $this->request->getValue();
267  $modal_show_sig_id = $this->request->getModalSignalId();
268  $show_signal = new \ILIAS\UI\Implementation\Component\Signal($modal_show_sig_id);
269 
270  if ($exp_val) {
271  $this->data->addExpression(
272  $this->user->getId(),
273  $exp_key,
279  );
280  } else {
281  $this->data->removeExpression(
282  $this->user->getId(),
283  $exp_key,
289  );
290  }
291  echo $this->renderEmoCounters($show_signal);
292  exit;
293  }
294 
295 
302  public function renderModal(): void
303  {
304  $user = $this->user;
305 
306  $f = $this->ui->factory();
307  $r = $this->ui->renderer();
308 
309 
310  $list_items = [];
311 
312  $glyph_renderings = [];
313  foreach ($this->data->getExpressionEntries(
314  $this->obj_id,
315  $this->obj_type,
316  $this->sub_obj_id,
317  $this->sub_obj_type,
318  $this->news_id
319  ) as $exp) {
320  $name = ilUserUtil::getNamePresentation($exp["user_id"]);
321 
322  $image = $f->image()->responsive(
323  ilObjUser::_getPersonalPicturePath($exp["user_id"]),
324  $name
325  );
326 
327  $g = $this->getGlyphForConst($exp["expression"], true);
328  $placeholder = "###" . $exp["expression"] . "###";
329  $glyph_renderings[$placeholder] = $r->render($g);
330 
331  $list_items[] = $f->item()->standard($name)
332  ->withDescription($placeholder . " " .
334  ->withLeadImage($image);
335  }
336 
337  $std_list = $f->panel()->listing()->standard("", array(
338  $f->item()->group("", $list_items)
339  ));
340 
341  $header = $f->legacy($this->renderEmoCounters(null, true));
342  //$header = $f->legacy("---");
343 
344  $modal = $f->modal()->roundtrip('', [$header, $std_list]);
345  $html = $r->render($modal);
346  foreach ($glyph_renderings as $pl => $gl) {
347  $html = str_replace($pl, $gl, $html);
348  }
349  echo $html;
350  exit;
351  }
352 
356  public static function getExpressionText(
357  int $a_const
358  ): string {
359  global $DIC;
360 
361  $lng = $DIC->language();
362 
363  switch ($a_const) {
364  case ilLikeData::TYPE_LIKE: return $lng->txt("like");
365  case ilLikeData::TYPE_DISLIKE: return $lng->txt("dislike");
366  case ilLikeData::TYPE_LOVE: return $lng->txt("love");
367  case ilLikeData::TYPE_LAUGH: return $lng->txt("laugh");
368  case ilLikeData::TYPE_ASTOUNDED: return $lng->txt("astounded");
369  case ilLikeData::TYPE_SAD: return $lng->txt("sad");
370  case ilLikeData::TYPE_ANGRY: return $lng->txt("angry");
371  }
372  return "";
373  }
374 }
ILIAS DI UIServices $ui
__construct(\ilLikeData $data, ?\ilTemplate $main_tpl=null)
exit
Definition: login.php:29
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
Class ChatMainBarProvider .
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
static getExpressionText(int $a_const)
Get expression text for const.
renderModal()
Render modal (asynch)
renderEmoCounters(ILIAS\UI\Component\Signal $modal_signal=null, bool $unavailable=false)
Render emo counters.
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...
global $DIC
Definition: feed.php:28
getGlyphForConst(int $a_const, bool $unavailable=false)
getNextClass($a_gui_class=null)
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:
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$url
Definition: ltiregstart.php:35
$txt
Definition: error.php:14
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)
getLinkTarget(object $a_gui_obj, string $a_cmd=null, string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
ilObjUser $user
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
string $sub_obj_type
setParameter(object $a_gui_obj, string $a_parameter, $a_value)
string $obj_type
ilGlobalTemplateInterface $main_tpl
User interface for like feature.
ilLanguage $lng
static initConnection(?ilGlobalTemplateInterface $a_main_tpl=null)
Init YUI Connection module.
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