5 require_once(__DIR__ .
"/../../../../libs/composer/vendor/autoload.php");
6 require_once(__DIR__ .
"/../../Base.php");
8 use \ILIAS\UI\Component as
C;
9 use \ILIAS\UI\Implementation as
I;
10 use \ILIAS\UI\Implementation\Component\SignalGenerator;
19 $factory =
new class extends NoUIFactory {
20 public function legacyPanel($title, $content)
22 return new I\Component\Panel\Secondary\Legacy($title, $content);
24 public function legacy($content)
27 return $f->legacy($content);
29 public function dropdown()
31 return new I\Component\Dropdown\Factory();
33 public function viewControl()
37 public function button()
39 return new I\Component\Button\Factory();
41 public function symbol() : C\Symbol\Factory
43 return new I\Component\Symbol\Factory(
55 $html = str_replace([
"\n",
"\t"],
"", $html);
62 $legacy = $this->
getUIFactory()->legacy(
"Legacy content");
63 $secondary_panel = $this->
getUIFactory()->legacyPanel(
"List Title", $legacy);
65 $this->assertInstanceOf(
"ILIAS\\UI\\Component\\Panel\\Secondary\\Legacy", $secondary_panel);
70 $legacy = $this->
getUIFactory()->legacy(
"Legacy content");
71 $secondary_panel = $this->
getUIFactory()->legacyPanel(
"Title", $legacy);
73 $this->assertEquals($secondary_panel->getTitle(),
"Title");
78 $legacy = $this->
getUIFactory()->legacy(
"Legacy content");
79 $secondary_panel = $this->
getUIFactory()->legacyPanel(
"title", $legacy);
81 $this->assertEquals($secondary_panel->getLegacyComponent(), $legacy);
86 $legacy = $this->
getUIFactory()->legacy(
"Legacy content");
87 $actions = $this->
getUIFactory()->dropdown()->standard(array(
88 $this->
getUIFactory()->button()->shy(
"ILIAS",
"https://www.ilias.de"),
89 $this->
getUIFactory()->button()->shy(
"Github",
"https://www.github.com")
92 $secondary_panel = $this->
getUIFactory()->legacyPanel(
"title", $legacy)
93 ->withActions($actions);
95 $this->assertEquals($secondary_panel->getActions(), $actions);
100 $legacy = $this->
getUIFactory()->legacy(
"Legacy content");
101 $secondary_panel = $this->
getUIFactory()->legacyPanel(
"title", $legacy);
102 $array_vc = $secondary_panel->getViewControls();
104 $this->assertEquals($array_vc, null);
109 $legacy = $this->
getUIFactory()->legacy(
"Legacy content");
110 $sort_options = array(
111 'internal_rating' =>
'Best',
112 'date_desc' =>
'Most Recent',
113 'date_asc' =>
'Oldest',
115 $sortation = $this->
getUIFactory()->viewControl()->sortation($sort_options);
117 $secondary_panel = $this->
getUIFactory()->legacyPanel(
"title", $legacy)
118 ->withViewControls([$sortation]);
120 $array_vc = $secondary_panel->getViewControls();
122 $this->assertEquals($array_vc[0], $sortation);
127 $legacy = $this->
getUIFactory()->legacy(
"Legacy content");
128 $pagination = $this->
getUIFactory()->viewControl()->pagination()
129 ->withTargetURL(
"http://ilias.de",
'page')
130 ->withTotalEntries(98)
132 ->withCurrentPage(1);
134 $secondary_panel = $this->
getUIFactory()->legacyPanel(
"title", $legacy)
135 ->withViewControls([$pagination]);
137 $array_vc = $secondary_panel->getViewControls();
139 $this->assertEquals($array_vc[0], $pagination);
144 $legacy = $this->
getUIFactory()->legacy(
"Legacy content");
145 $back = $this->
getUIFactory()->button()->standard(
"previous",
"http://www.ilias.de");
146 $next = $this->
getUIFactory()->button()->standard(
"next",
"http://www.github.com");
147 $current = $this->
getUIFactory()->button()->standard(
"current",
"");
150 $secondary_panel = $this->
getUIFactory()->legacyPanel(
"title", $legacy)
153 $array_vc = $secondary_panel->getViewControls();
155 $this->assertEquals($array_vc[0],
$section);
162 $legacy = $this->
getUIFactory()->legacy(
"Legacy content");
163 $actions = $this->
getUIFactory()->dropdown()->standard(array(
164 $this->
getUIFactory()->button()->shy(
"ILIAS",
"https://www.ilias.de"),
165 $this->
getUIFactory()->button()->shy(
"Github",
"https://www.github.com")
168 $sec = $this->
getUIFactory()->legacyPanel(
"Title", $legacy)->withActions($actions);
172 $expected_html = <<<EOT
173 <div
class=
"panel panel-secondary panel-flex">
174 <div
class=
"panel-heading ilHeader">
176 <div
class=
"dropdown"><button
class=
"btn btn-default dropdown-toggle" type=
"button" data-toggle=
"dropdown" aria-label=
"actions" aria-haspopup=
"true" aria-expanded=
"false"> <span
class=
"caret"></span></button>
177 <ul
class=
"dropdown-menu">
178 <li><button
class=
"btn btn-link" data-action=
"https://www.ilias.de" id=
"id_1">
ILIAS</button></li>
179 <li><button
class=
"btn btn-link" data-action=
"https://www.github.com" id=
"id_2">Github</button></li>
183 <div
class=
"panel-body">
196 $legacy = $this->
getUIFactory()->legacy(
"Legacy content");
197 $sort_options = array(
201 $sortation = $this->
getUIFactory()->viewControl()->sortation($sort_options);
202 $sec = $this->
getUIFactory()->legacyPanel(
"Title", $legacy)
203 ->withViewControls([$sortation]);
207 $expected_html = <<<EOT
208 <div
class=
"panel panel-secondary panel-flex">
209 <div
class=
"panel-heading ilHeader">
211 <div
class=
"il-viewcontrol-sortation" id=
"id_1">
212 <div
class=
"dropdown">
213 <button
class=
"btn btn-default dropdown-toggle" type=
"button" data-toggle=
"dropdown" aria-label=
"actions" aria-haspopup=
"true" aria-expanded=
"false">
214 <span
class=
"caret"></span>
216 <ul
class=
"dropdown-menu">
217 <li><button
class=
"btn btn-link" data-action=
"?sortation=a" id=
"id_2">
A</button></li>
218 <li><button
class=
"btn btn-link" data-action=
"?sortation=b" id=
"id_3">
B</button></li>
223 <div
class=
"panel-body">
236 $legacy = $this->
getUIFactory()->legacy(
"Legacy content");
238 $pagination = $this->
getUIFactory()->viewControl()->pagination()
239 ->withTargetURL(
'http://ilias.de',
'page')
240 ->withTotalEntries(10)
242 ->withCurrentPage(1);
244 $sec = $this->
getUIFactory()->legacyPanel(
"Title", $legacy)
245 ->withViewControls([$pagination]);
249 $expected_html = <<<EOT
250 <div
class=
"panel panel-secondary panel-flex">
251 <div
class=
"panel-heading ilHeader">
253 <div
class=
"il-viewcontrol-pagination">
254 <span
class=
"browse previous">
255 <a
class=
"glyph" href=
"http://ilias.de?page=0" aria-label=
"back">
256 <span
class=
"glyphicon glyphicon-chevron-left" aria-hidden=
"true"></span>
259 <button
class=
"btn btn-link" data-action=
"http://ilias.de?page=0" id=
"id_1">1</button>
260 <button
class=
"btn btn-link engaged" aria-pressed=
"true" data-action=
"http://ilias.de?page=1" id=
"id_2">2</button>
261 <button
class=
"btn btn-link" data-action=
"http://ilias.de?page=2" id=
"id_3">3</button>
262 <button
class=
"btn btn-link" data-action=
"http://ilias.de?page=3" id=
"id_4">4</button>
263 <button
class=
"btn btn-link" data-action=
"http://ilias.de?page=4" id=
"id_5">5</button>
264 <span
class=
"browse next">
265 <a
class=
"glyph" href=
"http://ilias.de?page=2" aria-label=
"next">
266 <span
class=
"glyphicon glyphicon-chevron-right" aria-hidden=
"true"></span>
271 <div
class=
"panel-body">
284 $legacy = $this->
getUIFactory()->legacy(
"Legacy content");
285 $back = $this->
getUIFactory()->button()->standard(
"previous",
"http://www.ilias.de");
286 $next = $this->
getUIFactory()->button()->standard(
"next",
"http://www.github.com");
287 $current = $this->
getUIFactory()->button()->standard(
"current",
"");
290 $secondary_panel = $this->
getUIFactory()->legacyPanel(
"Title", $legacy)
295 $expected_html = <<<EOT
296 <div
class=
"panel panel-secondary panel-flex">
297 <div
class=
"panel-heading ilHeader">
299 <div
class=
"il-viewcontrol-section">
300 <a
class=
"btn btn-default " href=
"http://www.ilias.de" aria-label=
"previous" data-action=
"http://www.ilias.de" id=
"id_1">
301 <span
class=
"glyphicon glyphicon-chevron-left"></span>
303 <button
class=
"btn btn-default" data-action=
"">
306 <a
class=
"btn btn-default " href=
"http://www.github.com" aria-label=
"next" data-action=
"http://www.github.com" id=
"id_2">
307 <span
class=
"glyphicon glyphicon-chevron-right"></span>
311 <div
class=
"panel-body">
324 $legacy = $this->
getUIFactory()->legacy(
"Legacy content");
325 $footer_shy_button = $this->
getUIFactory()->button()->shy(
"Action",
"");
327 $secondary_panel = $this->
getUIFactory()->legacyPanel(
"Title", $legacy)
328 ->withFooter($footer_shy_button);
332 $expected_html = <<<EOT
333 <div
class=
"panel panel-secondary panel-flex">
334 <div
class=
"panel-heading ilHeader">
337 <div
class=
"panel-body">
340 <div
class=
"panel-footer ilBlockInfo">
341 <button
class=
"btn btn-link" data-action=
"">Action</button>
353 $legacy = $this->
getUIFactory()->legacy(
"Legacy content");
355 $secondary_panel = $this->
getUIFactory()->legacyPanel(
"", $legacy);
359 $expected_html = <<<EOT
360 <div
class=
"panel panel-secondary panel-flex">
361 <div
class=
"panel-body">
test_render_with_sortation()
Class ChatMainBarProvider .
test_render_with_no_header()
test_render_with_pagination()
test_with_section_viewcontrol()
test_get_legacy_component()
Provides common functionality for UI tests.
test_render_with_actions()
assertHTMLEquals($expected_html_as_string, $html_as_string)
test_without_viewcontrols()
test_render_with_footer()
Test secondary legacy panels.
test_with_sortation_viewcontrol()
test_render_with_section()
test_implements_factory_interface()
test_with_pagination_viewcontrol()
getDefaultRenderer(JavaScriptBinding $js_binding=null, $with_stub_renderings=[])