5 require_once(__DIR__ .
"/../../../../libs/composer/vendor/autoload.php");
6 require_once(__DIR__ .
"/../../Base.php");
8 use \ILIAS\UI\Implementation as
I;
17 $this->sig_gen =
new I\Component\SignalGenerator();
22 return $this->
getUIFactory()->symbol()->icon()->standard(
"name",
"aria_label",
"small",
false);
27 $factory =
new class extends NoUIFactory {
28 public function item()
30 return new I\Component\Item\Factory();
32 public function Link()
34 return new \ILIAS\UI\Implementation\Component\Link\Factory();
36 public function button()
38 return new I\Component\Button\Factory();
42 return new I\Component\Symbol\Factory(
50 return new I\Component\MainControls\Factory(
68 $this->assertInstanceOf(
"ILIAS\\UI\\Component\\Item\\Notification",
$f->notification(
"title", $this->getIcon()));
75 $c =
$f->standard(
"title");
77 $this->assertEquals(
$c->getTitle(),
"title");
83 $title_link = $this->
getUIFactory()->link()->standard(
"TestLink",
"");
86 $this->assertEquals(
$c->getTitle(), $title_link);
94 $c =
$f->notification(
"title", $this->
getIcon())->withDescription(
"description");
96 $this->assertEquals(
$c->getDescription(),
"description");
103 $props = array(
"prop1" =>
"val1",
"prop2" =>
"val2");
104 $c =
$f->notification(
"title", $this->
getIcon())->withProperties($props);
106 $this->assertEquals(
$c->getProperties(), $props);
113 $actions =
new I\Component\Dropdown\Standard(array(
117 $c =
$f->notification(
"title", $this->
getIcon())->withActions($actions);
119 $this->assertEquals(
$c->getActions(), $actions);
127 $this->assertEquals(
$c->getLeadIcon(), $this->
getIcon());
128 $icon2 = $this->
getIcon()->withIsOutlined(
true);
130 $this->assertEquals(
$c->withLeadIcon($icon2)->getLeadIcon(), $icon2);
137 $c =
$f->notification(
"title", $this->
getIcon())->withCloseAction(
"closeAction");
139 $this->assertEquals(
$c->getCloseAction(),
"closeAction");
146 $content =
new I\Component\Legacy\Legacy(
"someContent", $this->sig_gen);
147 $c =
$f->notification(
"title", $this->
getIcon())->withAdditionalContent($content);
149 $this->assertEquals(
$c->getAdditionalContent(), $content);
156 $aggregate =
$f->notification(
"title_aggregate", $this->
getIcon());
158 ->withAggregateNotifications([$aggregate,$aggregate]);
161 $this->assertEquals(
$c->getAggregateNotifications(), [$aggregate,$aggregate]);
168 public function createId()
172 public $on_load_code = array();
173 public function addOnLoadCode($code)
175 $this->on_load_code[] = $code;
177 public function getOnLoadCodeAsync()
182 $props = array(
"prop1" =>
"val1",
"prop2" =>
"val2");
183 $content =
new I\Component\Legacy\Legacy(
"someContent", $this->sig_gen);
184 $actions =
new I\Component\Dropdown\Standard(array(
188 $title_link = $this->
getUIFactory()->link()->standard(
"TestLink",
"");
189 $aggregate =
$f->notification(
"title_aggregate", $this->
getIcon());
191 $c =
$f->notification($title_link, $this->
getIcon())
192 ->withDescription(
"description")
193 ->withProperties($props)
194 ->withAdditionalContent($content)
195 ->withAggregateNotifications([$aggregate])
196 ->withCloseAction(
"closeAction")
197 ->withActions($actions)
202 <span
class=
"il-item-notification-replacement-container">
203 <div
class=
"il-item il-notification-item" id=
"id">
205 <div
class=
"media-left">
206 <div
class=
"icon name small" aria-label=
"aria_label"></div>
208 <div
class=
"media-body">
209 <h4
class=
"il-item-notification-title">
210 <a href=
"">TestLink</a>
212 <button type=
"button" class=
"close" data-dismiss=
"modal" id=
"id">
213 <span aria-hidden=
"true">×</span>
214 <span
class=
"sr-only">Close</span>
216 <div
class=
"il-item-description">description</div>
217 <div
class=
"dropdown">
218 <button
class=
"btn btn-default dropdown-toggle" type=
"button" data-toggle=
"dropdown" aria-label=
"actions" aria-haspopup=
"true" aria-expanded=
"false">
219 <span
class=
"caret"></span>
221 <ul
class=
"dropdown-menu">
223 <button
class=
"btn btn-link" data-action=
"https://www.ilias.de" id=
"id">
ILIAS</button>
226 <button
class=
"btn btn-link" data-action=
"https://www.github.com" id=
"id">GitHub</button>
230 <div
class=
"il-item-additional-content">someContent</div>
231 <hr
class=
"il-item-divider">
232 <div
class=
"row il-item-properties">
233 <div
class=
"col-md-12">
235 <div
class=
"col-sm-3 il-item-property-name">prop1</div>
236 <div
class=
"col-sm-9 il-item-property-value il-multi-line-cap-3">val1</div>
239 <div
class=
"col-md-12">
241 <div
class=
"col-sm-3 il-item-property-name">prop2</div>
242 <div
class=
"col-sm-9 il-item-property-value il-multi-line-cap-3">val2</div>
246 <div
class=
"il-aggregate-notifications" data-aggregatedby=
"id">
247 <div
class=
"il-maincontrols-slate il-maincontrols-slate-notification">
248 <div
class=
"il-maincontrols-slate-notification-title">
249 <button
class=
"btn btn-bulky" data-action=
"">
250 <span
class=
"glyph" aria-label=
"back">
251 <span
class=
"glyphicon glyphicon-chevron-left" aria-hidden=
"true"></span>
253 <span
class=
"bulky-label">
back</span>
256 <div
class=
"il-maincontrols-slate-content">
257 <span
class=
"il-item-notification-replacement-container">
258 <div
class=
"il-item il-notification-item" id=
"id">
260 <div
class=
"media-left">
261 <div
class=
"icon name small" aria-label=
"aria_label"></div>
263 <div
class=
"media-body">
264 <h4
class=
"il-item-notification-title">title_aggregate</h4>
265 <div
class=
"il-aggregate-notifications" data-aggregatedby=
"id">
266 <div
class=
"il-maincontrols-slate il-maincontrols-slate-notification">
267 <div
class=
"il-maincontrols-slate-notification-title">
268 <button
class=
"btn btn-bulky" data-action=
"">
269 <span
class=
"glyph" aria-label=
"back">
270 <span
class=
"glyphicon glyphicon-chevron-left" aria-hidden=
"true"></span>
272 <span
class=
"bulky-label">
back</span>
275 <div
class=
"il-maincontrols-slate-content"></div>
Class ChatMainBarProvider .
getDefaultRenderer(JavaScriptBinding $js_binding=null)
testWithAggregateNotifications()
Provides common functionality for UI tests.
testImplementsFactoryInterface()
testRenderFullyFeatured()
brutallyTrimHTML($html)
A more radical version of normalizeHTML.
testWithAdditionalContent()