blob: 7eacb28ed281e335e098527a6cd9ae922772582d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
<?php
/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Common;
use Icinga\Module\Icingadb\Widget\EmptyState;
use InvalidArgumentException;
use ipl\Html\BaseHtmlElement;
/**
* Base class for item lists
*/
abstract class BaseItemList extends BaseHtmlElement
{
use BaseFilter;
use DetailActions;
protected $baseAttributes = [
'class' => 'item-list',
'data-base-target' => '_next',
'data-pdfexport-page-breaks-at' => '.list-item'
];
/** @var iterable */
protected $data;
/** @var bool Whether the list contains at least one item with an icon_image */
protected $hasIconImages = false;
protected $tag = 'ul';
/**
* Create a new item list
*
* @param iterable $data Data source of the list
*/
public function __construct($data)
{
if (! is_iterable($data)) {
throw new InvalidArgumentException('Data must be an array or an instance of Traversable');
}
$this->data = $data;
$this->addAttributes($this->baseAttributes);
$this->initializeDetailActions();
$this->init();
}
abstract protected function getItemClass(): string;
/**
* Get whether the list contains at least one item with an icon_image
*
* @return bool
*/
public function hasIconImages(): bool
{
return $this->hasIconImages;
}
/**
* Set whether the list contains at least one item with an icon_image
*
* @param bool $hasIconImages
*/
public function setHasIconImages(bool $hasIconImages)
{
$this->hasIconImages = $hasIconImages;
}
/**
* Initialize the item list
*
* If you want to adjust the item list after construction, override this method.
*/
protected function init()
{
}
protected function assemble()
{
$itemClass = $this->getItemClass();
foreach ($this->data as $data) {
/** @var BaseListItem|BaseTableRowItem $item */
$item = new $itemClass($data, $this);
$this->add($item);
}
if ($this->isEmpty()) {
$this->setTag('div');
$this->add(new EmptyState(t('No items found.')));
}
}
}
|