mirror of
https://github.com/Icinga/icingadb-web.git
synced 2026-05-20 01:08:24 -04:00
102 lines
2.3 KiB
PHP
102 lines
2.3 KiB
PHP
<?php
|
|
|
|
/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */
|
|
|
|
namespace Icinga\Module\Icingadb\Common;
|
|
|
|
use Icinga\Module\Icingadb\Common\BaseItemList;
|
|
use ipl\Html\Attributes;
|
|
use ipl\Html\BaseHtmlElement;
|
|
use ipl\Html\Html;
|
|
use ipl\Html\HtmlDocument;
|
|
use ipl\Html\HtmlElement;
|
|
|
|
abstract class BaseTableRowItem extends BaseHtmlElement
|
|
{
|
|
protected $baseAttributes = ['class' => 'list-item'];
|
|
|
|
/** @var object The associated list item */
|
|
protected $item;
|
|
|
|
/** @var BaseItemList The list where the item is part of */
|
|
protected $list;
|
|
|
|
protected $tag = 'li';
|
|
|
|
/**
|
|
* Create a new table row item
|
|
*
|
|
* @param object $item
|
|
* @param BaseItemList $list
|
|
*/
|
|
public function __construct($item, BaseItemList $list)
|
|
{
|
|
$this->item = $item;
|
|
$this->list = $list;
|
|
|
|
$this->addAttributes($this->baseAttributes);
|
|
|
|
$this->init();
|
|
}
|
|
|
|
abstract protected function assembleColumns(HtmlDocument $columns);
|
|
|
|
abstract protected function assembleTitle(BaseHtmlElement $title);
|
|
|
|
protected function assembleVisual(BaseHtmlElement $visual)
|
|
{
|
|
}
|
|
|
|
protected function createColumn($content = null): BaseHtmlElement
|
|
{
|
|
return Html::tag('div', ['class' => 'col'], $content);
|
|
}
|
|
|
|
protected function createColumns(): HtmlDocument
|
|
{
|
|
$columns = new HtmlDocument();
|
|
|
|
$this->assembleColumns($columns);
|
|
|
|
return $columns;
|
|
}
|
|
|
|
protected function createTitle(): BaseHtmlElement
|
|
{
|
|
$title = $this->createColumn()->addAttributes(['class' => 'title']);
|
|
|
|
$this->assembleTitle($title);
|
|
|
|
return $title;
|
|
}
|
|
|
|
/**
|
|
* @return ?BaseHtmlElement
|
|
*/
|
|
protected function createVisual()
|
|
{
|
|
$visual = new HtmlElement('div', Attributes::create(['class' => 'visual']));
|
|
|
|
$this->assembleVisual($visual);
|
|
|
|
return $visual->isEmpty() ? null : $visual;
|
|
}
|
|
|
|
/**
|
|
* Initialize the list item
|
|
*
|
|
* If you want to adjust the list item after construction, override this method.
|
|
*/
|
|
protected function init()
|
|
{
|
|
}
|
|
|
|
protected function assemble()
|
|
{
|
|
$this->add([
|
|
$this->createVisual(),
|
|
$this->createTitle(),
|
|
$this->createColumns()
|
|
]);
|
|
}
|
|
}
|