19 declare(strict_types=1);
21 require_once(__DIR__ .
"/../../../../../../vendor/composer/vendor/autoload.php");
22 require_once(__DIR__ .
"/../../Base.php");
33 private I\Component\Symbol\Glyph\Glyph
$glyph;
34 private I\Component\Symbol\Icon\Standard
$icon;
38 $this->button_factory =
new I\Component\Button\Factory();
39 $this->glyph =
new I\Component\Symbol\Glyph\Glyph(
"briefcase",
"briefcase");
40 $this->icon =
new I\Component\Symbol\Icon\Standard(
"someExample",
"Example",
"small",
false);
45 $this->assertInstanceOf(
46 "ILIAS\\UI\\Component\\Button\\Bulky",
47 $this->button_factory->bulky($this->glyph,
"label",
"http://www.ilias.de")
51 public function testConstructionIconTypeWrong():
void 53 $this->expectException(TypeError::class);
58 $f->bulky(
$c,
"",
"http://www.ilias.de");
63 $b = $this->button_factory->bulky($this->glyph,
"label",
"http://www.ilias.de");
72 $b = $this->button_factory->bulky($this->icon,
"label",
"http://www.ilias.de");
81 $b = $this->button_factory->bulky($this->glyph,
"label",
"http://www.ilias.de");
82 $this->assertFalse(
$b->isEngaged());
83 $this->assertFalse(
$b->isEngageable());
85 $b = $b->withEngagedState(
true);
86 $this->assertInstanceOf(
87 "ILIAS\\UI\\Component\\Button\\Bulky",
90 $this->assertTrue($b->isEngaged());
91 $this->assertTrue($b->isEngageable());
96 $b = $this->button_factory->bulky($this->glyph,
"label",
"http://www.ilias.de");
97 $this->assertFalse(
$b->isEngaged());
98 $this->assertFalse(
$b->isEngageable());
100 $b = $b->withEngagedState(
false);
101 $this->assertInstanceOf(
102 "ILIAS\\UI\\Component\\Button\\Bulky",
105 $this->assertFalse($b->isEngaged());
106 $this->assertTrue($b->isEngageable());
112 $b = $this->button_factory->bulky($this->glyph,
"label",
"http://www.ilias.de")
114 $this->assertEquals(
"menuitem",
$b->getAriaRole());
116 $this->assertFalse(
"This should not happen");
123 $this->button_factory->bulky($this->glyph,
"label",
"http://www.ilias.de")
124 ->withAriaRole(
"loremipsum");
125 $this->assertFalse(
"This should not happen");
127 $this->assertTrue(
true);
133 $r = $this->getDefaultRenderer();
134 $b = $this->button_factory->bulky($this->glyph,
"label",
"http://www.ilias.de");
136 $this->assertHTMLEquals(
144 $r = $this->getDefaultRenderer();
145 $b = $this->button_factory->bulky($this->glyph,
"label",
"http://www.ilias.de")
146 ->withEngagedState(
true);
148 $this->assertHTMLEquals(
156 $r = $this->getDefaultRenderer();
157 $b = $this->button_factory->bulky($this->glyph,
"label",
"http://www.ilias.de")
158 ->withEngagedState(
true);
159 $this->assertHTMLEquals(
165 protected function getHtmlWithGlyph(
bool $engeagable =
false,
bool $engeaged =
false): string
171 $aria_pressed =
" aria-pressed='true'";
172 $engaged_class =
" engaged";
174 $aria_pressed =
" aria-pressed='false'";
175 $engaged_class =
" disengaged";
179 .
'<button class="btn btn-bulky' . $engaged_class .
'" data-action="http://www.ilias.de" id="id_1" ' . $aria_pressed .
'>' 180 .
' <span class="glyph" role="img">' 181 .
' <span class="glyphicon glyphicon-briefcase" aria-hidden="true"></span>' 183 .
' <span class="bulky-label">label</span>' 189 $r = $this->getDefaultRenderer();
190 $b = $this->button_factory->bulky($this->icon,
"label",
"http://www.ilias.de");
193 .
'<button class="btn btn-bulky" data-action="http://www.ilias.de" id="id_1">' 194 .
' <img class="icon someExample small" src="./assets/images/standard/icon_default.svg" alt=""/>' 195 .
' <span class="bulky-label">label</span>' 198 $this->assertHTMLEquals(
206 $r = $this->getDefaultRenderer();
207 $b = $this->button_factory->bulky($this->icon,
"label",
"http://www.ilias.de")
211 .
'<button class="btn btn-bulky" data-action="http://www.ilias.de" id="id_1" role="menuitem">' 212 .
' <img class="icon someExample small" src="./assets/images/standard/icon_default.svg" alt=""/>' 213 .
' <span class="bulky-label">label</span>' 216 $this->assertHTMLEquals(
224 $r = $this->getDefaultRenderer();
225 $b = $this->button_factory->bulky($this->icon,
"label",
"http://www.ilias.de")
226 ->withEngagedState(
false)
230 .
'<button class="btn btn-bulky" data-action="http://www.ilias.de" id="id_1" role="menuitem" aria-haspopup="true">' 231 .
' <img class="icon someExample small" src="./assets/images/standard/icon_default.svg" alt=""/>' 232 .
' <span class="bulky-label">label</span>' 235 $this->assertHTMLEquals(
243 $r = $this->getDefaultRenderer();
244 $b = $this->button_factory->bulky($this->icon,
"Example",
"http://www.ilias.de")
245 ->withEngagedState(
false)
249 .
'<button class="btn btn-bulky" data-action="http://www.ilias.de" id="id_1" role="menuitem" aria-haspopup="true">' 250 .
' <img class="icon someExample small" src="./assets/images/standard/icon_default.svg" alt=""/>' 251 .
' <span class="bulky-label">Example</span>' 254 $this->assertHTMLEquals(
261 $r = $this->getDefaultRenderer();
262 $b = $this->button_factory->bulky($this->icon,
"Example",
"http://www.ilias.de")
264 ->withHelpTopics(
new \
ILIAS\
UI\Help\Topic(
"a"));
268 <div
class=
"c-tooltip__container">
269 <
button class=
"btn btn-bulky" data-action=
"http://www.ilias.de" id=
"id_1" role=
"menuitem" aria-describedby=
"id_2">
270 <img
class=
"icon someExample small" src=
"./assets/images/standard/icon_default.svg" alt=
"" /><span
class=
"bulky-label">Example</span>
272 <div
id=
"id_2" role=
"tooltip" class=
"c-tooltip c-tooltip--hidden"><p>tooltip: a</p></div>
276 $this->assertHTMLEquals(
button(string $caption, string $cmd)
Interface Observer Contains several chained tasks and infos about them.