4 require_once(
"libs/composer/vendor/autoload.php");
5 require_once(__DIR__ .
"/../../Base.php");
7 use \ILIAS\UI\Component as
C;
8 use \ILIAS\UI\Implementation as
I;
17 'internal_rating' =>
'Best',
18 'date_desc' =>
'Most Recent',
19 'date_asc' =>
'Oldest',
24 return new I\Component\ViewControl\Factory(
32 $sortation =
$f->sortation($this->options);
33 $this->assertInstanceOf(
34 "ILIAS\\UI\\Component\\ViewControl\\Sortation",
37 $this->assertInstanceOf(
38 "ILIAS\\UI\\Component\\Signal",
39 $sortation->getSelectSignal()
46 $s =
$f->sortation($this->options);
48 $this->assertEquals($this->options, $s->getOptions());
50 $this->assertEquals(
'label', $s->withLabel(
'label')->getLabel());
52 $s = $s->withTargetURL(
'#',
'param');
53 $this->assertEquals(
'#', $s->getTargetURL());
54 $this->assertEquals(
'param', $s->getParameterName());
56 $this->assertEquals(array(), $s->getTriggeredSignals());
58 $signal = $generator->create();
61 $s->withOnSort($signal)->getTriggeredSignals()[0]->getSignal()
69 $s =
$f->sortation($this->options);
81 <div
class=
"il-viewcontrol-sortation" id=
""><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><ul
class=
"dropdown-menu">
82 <li><button
class=
"btn btn-link" data-action=
"?sortation=internal_rating" id=
"id_1">Best</button></li>
83 <li><button
class=
"btn btn-link" data-action=
"?sortation=date_desc" id=
"id_2">Most Recent</button></li>
84 <li><button
class=
"btn btn-link" data-action=
"?sortation=date_asc" id=
"id_3">Oldest</button></li></ul></div>
92 $factory =
new class extends NoUIFactory {
93 public function button()
95 return new I\Component\Button\Factory();
97 public function dropdown()
99 return new I\Component\Dropdown\Factory();
getDefaultRenderer(JavaScriptBinding $js_binding=null)
Provides common functionality for UI tests.
getSortationExpectedHTML()
Test on icon implementation.