19 declare(strict_types=1);
59 $f = $DIC->ui()->factory();
65 $icon =
$f->symbol()->icon()->standard(
"chtr",
"chtr");
66 $title =
$f->link()->standard(
"Some Title",
"#");
67 $item =
$f->item()->notification($title, $icon);
71 $async_close =
$_SERVER[
'REQUEST_URI'] .
'&close_item=true&async_load_replace=false&async_load_replace_content=false&async_add_aggregate=false';
73 $closable_item = $item->withCloseAction($async_close);
75 $async_replace_url =
$_SERVER[
'REQUEST_URI'] .
'&close_item=false&async_load_replace=true&async_load_replace_content=false&async_add_aggregate=false';
77 $async_replace_content_load_url =
$_SERVER[
'REQUEST_URI'] .
'&close_item=false&async_load_replace=false&async_load_replace_content=true&async_add_aggregate=false';
79 $async_add_aggregate =
$_SERVER[
'REQUEST_URI'] .
'&close_item=false&async_load_replace=false&async_load_replace_content=false&async_add_aggregate=true';
83 $js =
$f->legacy()->content(
"")->withOnLoadCode(
function (
$id) use ($async_replace_content_load_url) {
85 il.DemoScopeRemaining--; 86 il.DemoScopeItem.replaceContentByAsyncItemContent('$async_replace_content_load_url',{remaining: il.DemoScopeRemaining,added: il.DemoScopeAdded}); 100 for ($i = 1; $i < $added + 1; $i++) {
101 $items[] = $closable_item->withDescription(
"This item is number: " . $i .
" of a fix set of 10 entries.");
103 $replacement = $item->withDescription(
"Number of Async non-closed Aggregates: " . $remaining .
", totally created: " . $added)
104 ->withAggregateNotifications($items);
106 echo
$renderer->renderAsync([$replacement]);
113 $replacement = $item->withDescription(
"Number of Async non-closed Aggregates: " . $remaining .
", totally created: " . $added);
114 echo
$renderer->renderAsync([$replacement]);
121 $new_aggregate = $closable_item->withDescription(
"The item has been added, Nr: " . $added);
123 echo
$renderer->renderAsync([$new_aggregate]);
130 $add_button =
$f->button()->standard(
"Add Chat Notification",
"#")
131 ->withAdditionalOnLoadCode(
function (
$id) use ($async_replace_url, $async_add_aggregate) {
133 $('#$id').click(function() { 134 il.DemoScopeItem.getCounterObjectIfAny().incrementNoveltyCount(1); 136 il.DemoScopeRemaining++; 137 il.DemoScopeItem.addAsyncAggregate('$async_add_aggregate',{remaining: il.DemoScopeAdded,added: il.DemoScopeAdded}); 138 il.DemoScopeItem.replaceContentByAsyncItemContent('$async_replace_url',{remaining: il.DemoScopeRemaining,added: il.DemoScopeAdded}); 143 $reset_button =
$f->button()->standard(
"Reset Chat",
"#")
144 ->withAdditionalOnLoadCode(
function (
$id) use ($async_replace_url) {
146 $('#$id').click(function() { 147 il.DemoScopeItem.getCounterObjectIfAny().decrementNoveltyCount(il.DemoScopeRemaining); 148 il.DemoScopeAdded = 0; 149 il.DemoScopeRemaining = 0; 150 il.DemoScopeItem.replaceByAsyncItem('$async_replace_url',{remaining: il.DemoScopeAdded,added: il.DemoScopeAdded}); 155 $set_button =
$f->button()->standard(
"Set to 10 chat entries",
"#")
156 ->withAdditionalOnLoadCode(
function (
$id) use ($async_replace_url) {
158 $('#$id').click(function() { 159 il.DemoScopeItem.getCounterObjectIfAny().decrementNoveltyCount(il.DemoScopeRemaining); 160 il.DemoScopeItem.getCounterObjectIfAny().incrementNoveltyCount(10); 161 il.DemoScopeAdded = 10; 162 il.DemoScopeRemaining = 10; 163 il.DemoScopeItem.replaceByAsyncItem('$async_replace_url',{remaining: il.DemoScopeAdded,added: il.DemoScopeAdded}); 173 ->withDescription(
"This is the original Version after the Page has loaded. Will be replaced completely.")
174 ->withAdditionalOnLoadCode(
function (
$id) {
176 il.DemoScopeAdded = 0; 177 il.DemoScopeRemaining = 0; 178 il.DemoScopeItem = il.UI.item.notification.getNotificationItemObject($($id)); 193 $async_slate =
$f->mainControls()->slate()->notification(
"Chat", [$async_item]);
197 $mail_icon =
$f->symbol()->icon()->standard(
"mail",
"mail");
198 $mail_title =
$f->link()->standard(
"Inbox",
"link_to_inbox");
199 $mail_notification_item =
$f->item()->notification($mail_title, $mail_icon)
200 ->withDescription(
"You have 23 unread mails in your inbox")
201 ->withProperties([
"Time" =>
"3 days ago"]);
202 $mail_slate =
$f->mainControls()->slate()->notification(
"Mail", [$mail_notification_item]);
206 $notification_glyph =
$f->symbol()->glyph()->notification(
"notification",
"notification")
207 ->withCounter(
$f->counter()->novelty(1));
209 $notification_center =
$f->mainControls()->slate()
210 ->combined(
"Notification Center", $notification_glyph)
211 ->withAdditionalEntry($async_slate)
212 ->withAdditionalEntry($mail_slate);
214 $css_fix =
"<style>.panel-primary .il-maincontrols-metabar{flex-direction: column;} .panel-primary .il-metabar-slates{position: relative;top: 0px;}</style>";
220 $help =
$f->button()->bulky(
$f->symbol()->glyph()->help(),
'Help',
'#');
221 $search =
$f->button()->bulky(
$f->symbol()->glyph()->search(),
'Search',
'#');
222 $user =
$f->button()->bulky(
$f->symbol()->glyph()->user(),
'User',
'#');
225 $metabar =
$f->mainControls()->metabar()
226 ->withAdditionalEntry(
'search', $search)
227 ->withAdditionalEntry(
'help', $help)
228 ->withAdditionalEntry(
'notification', $notification_center)
229 ->withAdditionalEntry(
'user', $user);
extended_example_for_developers()
description: > This is a rather extended example on the usage of the Notification Item async functio...
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
usuallyDoneByGlobalScreenProbablyIgnore($async_item, $f, $renderer, $add_button, $set_button, $reset_button)
buildMetabarWithNotifications($f, $notification_center)
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...