38 $ui_factory = $this->dic->ui()->factory();
40 $title = $ui_factory->link()->standard($this->
txt(
'background_tasks'),
'#');
41 $icon = $ui_factory->symbol()->icon()->standard(
'bgtk', $this->
txt(
'background_tasks'));
43 return $this->dic->ui()->factory()
45 ->notification($title, $icon)
46 ->withDescription(
"$nr_buckets {$this->txt('background_tasks')}")
56 $persistence = $this->dic->backgroundTasks()->persistence();
58 $observer_ids = $persistence->getBucketIdsOfUser($this->dic->user()->getId(),
'id',
'DESC');
59 foreach ($persistence->loadBuckets($observer_ids) as $observer) {
69 $redirect_uri =
"//{$_SERVER['HTTP_HOST']}{$_SERVER['REQUEST_URI']}";
71 $f = $this->dic->ui()->factory();
73 $state = (int) $observer->
getState();
76 $icon =
$f->symbol()->icon()->standard(
"bgtk", $this->
txt(
"bg_task"));
77 $title = $observer->
getTitle() . ($state === State::SCHEDULED ?
" ({$this->txt('scheduled')})" :
"");
80 $description_text = $this->
txt(
'background_tasks');
82 if ($state === State::USER_INTERACTION) {
83 $actions = $this->getUserInteractionContent($observer, $redirect_uri);
84 $primary_action = array_pop($actions);
85 if ($primary_action instanceof
Button) {
86 $title = $primary_action->withLabel($title);
89 $item =
$f->item()->notification($title, $icon);
98 $item = $item->withActions(
$f->dropdown()->standard($actions));
99 $input = $current_task->getInput();
100 $message = $current_task->getMessage($input);
103 $item = $item->withDescription(
$message);
105 $item = $item->withAdditionalContent($this->
getProgressbar($observer));
108 return $item->withCloseAction(
113 $item =
$f->item()->notification($title, $icon);
116 if ($state === State::RUNNING) {
119 $item = $item->withAdditionalOnLoadCode(
function ($id) use (
$url) {
121 return "var notification_item = il.UI.item.notification.getNotificationItemObject($('#$id')); 122 il.BGTask.refreshItem(notification_item,'$url');";
125 $expected = $current_task->getExpectedTimeOfTaskInSeconds();
127 if ($possibly_failed ===
true) {
128 $item = $item->withDescription($this->
txt(
'task_might_be_failed'));
129 $item = $item->withCloseAction(
140 $description_text = $this->
txt(
'background_tasks');
141 return $item->withAdditionalOnLoadCode(
function ($id) use ($description_text) {
142 return "il.BGTask.updateDescriptionOnClose('#$id','$description_text');";
155 public function getUserInteractionContent(
Bucket $observer,
string $redirect_uri) : array
157 $factory = $this->dic->ui()->factory();
158 $language = $this->dic->language();
159 $persistence = $this->dic->backgroundTasks()->persistence();
160 $ctrl = $this->dic->ctrl();
167 $options = $userInteraction->getOptions($userInteraction->getInput());
169 $shy_buttons = array_map(
171 $ctrl->setParameterByClass(
172 ilBTControllerGUI::class,
176 $ctrl->setParameterByClass(
177 ilBTControllerGUI::class,
181 $ctrl->setParameterByClass(
182 ilBTControllerGUI::class,
184 $persistence->getBucketContainerId($observer)
190 $language->txt($option->getLangVar()),
206 case ((
int) $percentage === 100):
208 $content = $this->dic->language()->txt(
"completed");
210 case ((
int) $observer->
getState() === State::USER_INTERACTION):
212 $content = $this->dic->language()->txt(
"waiting");
216 $content =
"{$percentage}%";
220 return $this->dic->ui()->factory()->legacy(
" <div class='progress'> 221 <div class='progress-bar progress-bar-striped {$running}' role='progressbar' aria-valuenow='{$percentage}' 222 aria-valuemin='0' aria-valuemax='100' style='width:{$percentage}%'> 231 $ctrl = $this->dic->ctrl();
232 $persistence = $this->dic->backgroundTasks()->persistence();
237 switch ($option->getValue()) {
238 case AbstractTask::MAIN_ABORT:
241 case AbstractTask::MAIN_REMOVE:
256 $ctrl = $this->dic->ctrl();
257 $persistence = $this->dic->backgroundTasks()->persistence();
270 private function txt(
string $id) : string
272 return $this->dic->language()->txt($id);
__construct(\ILIAS\DI\Container $dic)
Class ChatMainBarProvider .
getItemForObserver(Bucket $observer)
getDefaultCardContent(Bucket $observer)
const CMD_GET_REPLACEMENT_ITEM
getLastHeartbeat()
When was the last time that something happened on this bucket?
getProgressbar(Bucket $observer)
getRefreshUrl(Bucket $observer)
addFromUrlToNextRequest(string $redirect_uri)
getCloseButtonAction(UserInteraction\Option $option, $redirect_uri, Bucket $observer)
const CMD_USER_INTERACTION
getItemWithOnCloseDecoration(ILIAS\UI\Component\Item\Notification $item)
getNotificationItem(int $nr_buckets)
Get the Notification Items.