19 declare(strict_types=1);
21 require_once(__DIR__ .
"/../../../../../../vendor/composer/vendor/autoload.php");
22 require_once(__DIR__ .
"/../../Base.php");
36 public function panelSecondary(): I\Component\Panel\Secondary\Factory
38 return new I\Component\Panel\Secondary\Factory();
41 public function dropdown(): I\Component\Dropdown\Factory
43 return new I\Component\Dropdown\Factory();
46 public function viewControl(): I\Component\ViewControl\Factory
51 public function button(): I\Component\Button\Factory
53 return new I\Component\Button\Factory();
56 public function symbol(): I\Component\Symbol\Factory
58 return new I\Component\Symbol\Factory(
69 $html = str_replace([
"\n",
"\t"],
"", $html);
76 $secondary_panel = $this->
getUIFactory()->panelSecondary()->listing(
"List Title", array(
87 $this->assertInstanceOf(
"ILIAS\\UI\\Component\\Panel\\Secondary\\Listing", $secondary_panel);
102 $c = $this->
getUIFactory()->panelSecondary()->listing(
"title", $groups);
104 $this->assertEquals(
"title",
$c->getTitle());
119 $c = $this->
getUIFactory()->panelSecondary()->listing(
"title", $groups);
121 $this->assertEquals(
$c->getItemGroups(), $groups);
126 $actions =
new I\Component\Dropdown\Standard(array(
133 $c = $this->
getUIFactory()->panelSecondary()->listing(
"title", $groups)
134 ->withActions($actions);
136 $this->assertEquals(
$c->getActions(), $actions);
143 $actions = $this->
getUIFactory()->dropdown()->standard(array(
148 $sec = $this->
getUIFactory()->panelSecondary()->listing(
"Title", array())->withActions($actions);
150 $html = $this->getDefaultRenderer()->render($sec);
152 $expected_html = <<<EOT
153 <div
class=
"panel panel-secondary panel-flex">
154 <div
class=
"panel-heading ilHeader">
155 <div
class=
"panel-title"><h2>
Title</h2></div>
156 <div
class=
"panel-controls">
157 <div
class=
"dropdown" id=
"id_3"><
button class=
"btn btn-default dropdown-toggle" type=
"button" aria-label=
"actions" aria-haspopup=
"true" aria-expanded=
"false" aria-controls=
"id_3_menu"><span
class=
"caret"></span></
button>
158 <ul
id=
"id_3_menu" class=
"dropdown-menu">
159 <li><
button class=
"btn btn-link" data-action=
"https://www.ilias.de" id=
"id_1">
ILIAS</button></li>
160 <li><button
class=
"btn btn-link" data-action=
"https://www.github.com" id=
"id_2">Github</button></li>
165 <div
class=
"panel-body">
170 $this->brutallyTrimHTML($expected_html),
171 $this->brutallyTrimHTML($html)
177 $sort_options = array(
181 $sortation = $this->
getUIFactory()->viewControl()->sortation($sort_options,
'a');
182 $sec = $this->
getUIFactory()->panelSecondary()->listing(
"Title", array())
183 ->withViewControls([$sortation]);
185 $html = $this->getDefaultRenderer()->render($sec);
187 $expected_html = <<<EOT
188 <div
class=
"panel panel-secondary panel-flex">
189 <div
class=
"panel-heading ilHeader">
190 <div
class=
"panel-title"><h2>
Title</h2></div>
191 <div
class=
"panel-viewcontrols l-bar__space-keeper">
192 <div
class=
"dropdown il-viewcontrol il-viewcontrol-sortation l-bar__element" id=
"id_1">
193 <
button class=
"btn btn-default dropdown-toggle" type=
"button" data-toggle=
"dropdown" aria-label=
"sortation" aria-haspopup=
"true" aria-expanded=
"false" aria-controls=
"id_1_ctrl">
194 <span
class=
"label">vc_sort
A</span>
195 <span
class=
"glyphicon-sort"></span>
197 <ul
id=
"id_1_ctrl" class=
"dropdown-menu">
198 <li
class=
"selected"><
button class=
"btn btn-link" data-action=
"?sortation=a" id=
"id_2">
A</
button></li>
199 <li><
button class=
"btn btn-link" data-action=
"?sortation=b" id=
"id_3">
B</button></li>
203 <div
class=
"panel-controls"></div>
205 <div
class=
"panel-body">
210 $this->brutallyTrimHTML($expected_html),
211 $this->brutallyTrimHTML($html)
217 $pagination = $this->
getUIFactory()->viewControl()->pagination()
218 ->withTargetURL(
'http://ilias.de',
'page')
219 ->withTotalEntries(10)
221 ->withCurrentPage(1);
223 $sec = $this->
getUIFactory()->panelSecondary()->listing(
"Title", array())
224 ->withViewControls([$pagination]);
226 $html = $this->getDefaultRenderer()->render($sec);
228 $expected_html = <<<EOT
229 <div
class=
"panel panel-secondary panel-flex">
230 <div
class=
"panel-heading ilHeader">
231 <div
class=
"panel-title"><h2>
Title</h2></div>
232 <div
class=
"panel-viewcontrols l-bar__space-keeper">
233 <div
class=
"il-viewcontrol-pagination l-bar__element">
234 <span
class=
"btn btn-ctrl browse previous">
235 <a tabindex=
"0" class=
"glyph" href=
"http://ilias.de?page=0" aria-label=
"back">
236 <span
class=
"glyphicon glyphicon-chevron-left" aria-hidden=
"true"></span>
239 <
button class=
"btn btn-link" data-action=
"http://ilias.de?page=0" id=
"id_1">1</button>
240 <button
class=
"btn btn-link engaged" aria-pressed=
"true" data-action=
"http://ilias.de?page=1" id=
"id_2">2</button>
241 <button
class=
"btn btn-link" data-action=
"http://ilias.de?page=2" id=
"id_3">3</button>
242 <button
class=
"btn btn-link" data-action=
"http://ilias.de?page=3" id=
"id_4">4</button>
243 <button
class=
"btn btn-link" data-action=
"http://ilias.de?page=4" id=
"id_5">5</button>
244 <span
class=
"btn btn-ctrl browse next">
245 <a tabindex=
"0" class=
"glyph" href=
"http://ilias.de?page=2" aria-label=
"next">
246 <span
class=
"glyphicon glyphicon-chevron-right" aria-hidden=
"true"></span>
251 <div
class=
"panel-controls"></div>
253 <div
class=
"panel-body">
258 $this->brutallyTrimHTML($expected_html),
259 $this->brutallyTrimHTML($html)
265 $back = $this->
getUIFactory()->button()->standard(
"previous",
"http://www.ilias.de");
266 $next = $this->
getUIFactory()->button()->standard(
"next",
"http://www.github.com");
267 $current = $this->
getUIFactory()->button()->standard(
"current",
"");
268 $section = $this->
getUIFactory()->viewControl()->section($back, $current, $next);
270 $secondary_panel = $this->
getUIFactory()->panelSecondary()->listing(
"Title", array())
271 ->withViewControls([$section]);
273 $html = $this->getDefaultRenderer()->render($secondary_panel);
275 $expected_html = <<<EOT
276 <div
class=
"panel panel-secondary panel-flex">
277 <div
class=
"panel-heading ilHeader">
278 <div
class=
"panel-title"><h2>
Title</h2></div>
279 <div
class=
"panel-viewcontrols l-bar__space-keeper">
280 <div
class=
"il-viewcontrol-section l-bar__element">
281 <a
class=
"btn btn-ctrl browse previous" href=
"http://www.ilias.de" aria-label=
"previous" data-action=
"http://www.ilias.de" id=
"id_1">
282 <span
class=
"glyphicon glyphicon-chevron-left"></span>
284 <
button class=
"btn btn-default" data-action=
"">current</button>
285 <a
class=
"btn btn-ctrl browse next" href=
"http://www.github.com" aria-label=
"next" data-action=
"http://www.github.com" id=
"id_2">
286 <span
class=
"glyphicon glyphicon-chevron-right"></span>
290 <div
class=
"panel-controls"></div>
292 <div
class=
"panel-body">
297 $this->brutallyTrimHTML($expected_html),
298 $this->brutallyTrimHTML($html)
303 $footer_shy_button = $this->
getUIFactory()->button()->shy(
"Action",
"");
304 $secondary_panel = $this->
getUIFactory()->panelSecondary()->listing(
"", array())->withFooter($footer_shy_button);
306 $html = $this->getDefaultRenderer()->render($secondary_panel);
308 $expected_html = <<<EOT
309 <div
class=
"panel panel-secondary panel-flex">\n
310 <div
class=
"panel-body"></div>\n
311 <div
class=
"panel-footer ilBlockInfo"><
button class=
"btn btn-link" data-action=
"">
Action</
button></div>\n
315 $this->assertHTMLEquals(
316 $this->brutallyTrimHTML($expected_html),
317 $this->brutallyTrimHTML($html)
330 $secondary_panel = $this->
getUIFactory()->panelSecondary()->listing(
"", array($group));
332 $html = $this->getDefaultRenderer()->render($secondary_panel);
334 $expected_html = <<<EOT
335 <div
class=
"panel panel-secondary panel-flex">
336 <div
class=
"panel-body">
337 <div
class=
"il-item-group">
339 <div
class=
"il-item-group-items">
341 <li
class=
"il-std-item-container">
342 <div
class=
"il-item il-std-item ">
343 <h4
class=
"il-item-title">title1</h4>
346 <li
class=
"il-std-item-container">
347 <div
class=
"il-item il-std-item ">
348 <h4
class=
"il-item-title">title2</h4>
357 $this->assertHTMLEquals(
358 $this->brutallyTrimHTML($expected_html),
359 $this->brutallyTrimHTML($html)
365 $secondary_panel = $this->
getUIFactory()->panelSecondary()->listing(
"", array());
367 $html = $this->getDefaultRenderer()->render($secondary_panel);
369 $this->assertEquals(
"", $html);
testImplementsFactoryInterface()
button(string $caption, string $cmd)
testRenderWithSortation()
Interface Observer Contains several chained tasks and infos about them.
testRenderWithNoHeaderButContent()
testRenderWithPagination()
Test secondary listing panels.
testRenderWithNoHeaderNoContentNoFooter()